StrongDM v1.12.0 published on Sunday, Apr 28, 2024 by Piers Karsenbarg
sdm.getResource
Explore with Pulumi AI
A Resource is a database, server, cluster, website, or cloud that strongDM delegates access to.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdm from "@pulumi/sdm";
const mysqlDatasources = sdm.getResource({
name: "us-west*",
tags: {
env: "dev",
region: "us-west",
},
type: "mysql",
});
import pulumi
import pulumi_sdm as sdm
mysql_datasources = sdm.get_resource(name="us-west*",
tags={
"env": "dev",
"region": "us-west",
},
type="mysql")
package main
import (
"github.com/pierskarsenbarg/pulumi-sdm/sdk/go/sdm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdm.LookupResource(ctx, &sdm.LookupResourceArgs{
Name: pulumi.StringRef("us-west*"),
Tags: map[string]interface{}{
"env": "dev",
"region": "us-west",
},
Type: pulumi.StringRef("mysql"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdm = Pulumi.Sdm;
return await Deployment.RunAsync(() =>
{
var mysqlDatasources = Sdm.GetResource.Invoke(new()
{
Name = "us-west*",
Tags =
{
{ "env", "dev" },
{ "region", "us-west" },
},
Type = "mysql",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdm.SdmFunctions;
import com.pulumi.sdm.inputs.GetResourceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var mysqlDatasources = SdmFunctions.getResource(GetResourceArgs.builder()
.name("us-west*")
.tags(Map.ofEntries(
Map.entry("env", "dev"),
Map.entry("region", "us-west")
))
.type("mysql")
.build());
}
}
variables:
mysqlDatasources:
fn::invoke:
Function: sdm:getResource
Arguments:
name: us-west*
tags:
env: dev
region: us-west
type: mysql
Using getResource
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getResource(args: GetResourceArgs, opts?: InvokeOptions): Promise<GetResourceResult>
function getResourceOutput(args: GetResourceOutputArgs, opts?: InvokeOptions): Output<GetResourceResult>
def get_resource(hostname: Optional[str] = None,
id: Optional[str] = None,
name: Optional[str] = None,
port: Optional[int] = None,
tags: Optional[Mapping[str, Any]] = None,
type: Optional[str] = None,
username: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetResourceResult
def get_resource_output(hostname: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
port: Optional[pulumi.Input[int]] = None,
tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
type: Optional[pulumi.Input[str]] = None,
username: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetResourceResult]
func LookupResource(ctx *Context, args *LookupResourceArgs, opts ...InvokeOption) (*LookupResourceResult, error)
func LookupResourceOutput(ctx *Context, args *LookupResourceOutputArgs, opts ...InvokeOption) LookupResourceResultOutput
> Note: This function is named LookupResource
in the Go SDK.
public static class GetResource
{
public static Task<GetResourceResult> InvokeAsync(GetResourceArgs args, InvokeOptions? opts = null)
public static Output<GetResourceResult> Invoke(GetResourceInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetResourceResult> getResource(GetResourceArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: sdm:index/getResource:getResource
arguments:
# arguments dictionary
The following arguments are supported:
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Dictionary<string, object>
- Tags is a map of key, value pairs.
- Type string
- a filter to select all items of a certain subtype. See the filter documentation for more information.
- Username string
- The username to authenticate with.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- map[string]interface{}
- Tags is a map of key, value pairs.
- Type string
- a filter to select all items of a certain subtype. See the filter documentation for more information.
- Username string
- The username to authenticate with.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- Map<String,Object>
- Tags is a map of key, value pairs.
- type String
- a filter to select all items of a certain subtype. See the filter documentation for more information.
- username String
- The username to authenticate with.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- {[key: string]: any}
- Tags is a map of key, value pairs.
- type string
- a filter to select all items of a certain subtype. See the filter documentation for more information.
- username string
- The username to authenticate with.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- Mapping[str, Any]
- Tags is a map of key, value pairs.
- type str
- a filter to select all items of a certain subtype. See the filter documentation for more information.
- username str
- The username to authenticate with.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- Map<Any>
- Tags is a map of key, value pairs.
- type String
- a filter to select all items of a certain subtype. See the filter documentation for more information.
- username String
- The username to authenticate with.
getResource Result
The following output properties are available:
- Ids List<string>
- a list of strings of ids of data sources that match the given arguments.
- Resources
List<Piers
Karsenbarg. Sdm. Outputs. Get Resource Resource> - A single element list containing a map, where each key lists one of the following objects:
- aks:
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Dictionary<string, object>
- Tags is a map of key, value pairs.
- Type string
- Username string
- The username to authenticate with.
- Ids []string
- a list of strings of ids of data sources that match the given arguments.
- Resources
[]Get
Resource Resource - A single element list containing a map, where each key lists one of the following objects:
- aks:
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- map[string]interface{}
- Tags is a map of key, value pairs.
- Type string
- Username string
- The username to authenticate with.
- ids List<String>
- a list of strings of ids of data sources that match the given arguments.
- resources
List<Get
Resource Resource> - A single element list containing a map, where each key lists one of the following objects:
- aks:
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- Map<String,Object>
- Tags is a map of key, value pairs.
- type String
- username String
- The username to authenticate with.
- ids string[]
- a list of strings of ids of data sources that match the given arguments.
- resources
Get
Resource Resource[] - A single element list containing a map, where each key lists one of the following objects:
- aks:
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- {[key: string]: any}
- Tags is a map of key, value pairs.
- type string
- username string
- The username to authenticate with.
- ids Sequence[str]
- a list of strings of ids of data sources that match the given arguments.
- resources
Sequence[Get
Resource Resource] - A single element list containing a map, where each key lists one of the following objects:
- aks:
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- Mapping[str, Any]
- Tags is a map of key, value pairs.
- type str
- username str
- The username to authenticate with.
- ids List<String>
- a list of strings of ids of data sources that match the given arguments.
- resources List<Property Map>
- A single element list containing a map, where each key lists one of the following objects:
- aks:
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- Map<Any>
- Tags is a map of key, value pairs.
- type String
- username String
- The username to authenticate with.
Supporting Types
GetResourceResource
- Aks
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Ak> - Aks
Basic List<PiersAuths Karsenbarg. Sdm. Inputs. Get Resource Resource Aks Basic Auth> - Aks
Service List<PiersAccount User Impersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Aks Service Account User Impersonation> - Aks
Service List<PiersAccounts Karsenbarg. Sdm. Inputs. Get Resource Resource Aks Service Account> - Aks
User List<PiersImpersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Aks User Impersonation> - Amazon
Eks List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Amazon Ek> - Amazon
Eks List<PiersInstance Profile User Impersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Amazon Eks Instance Profile User Impersonation> - Amazon
Eks List<PiersInstance Profiles Karsenbarg. Sdm. Inputs. Get Resource Resource Amazon Eks Instance Profile> - Amazon
Eks List<PiersUser Impersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Amazon Eks User Impersonation> - Amazon
Es List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Amazon E> - Amazonmq
Amqp091s List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Amazonmq Amqp091> - Athenas
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Athena> - Aurora
Mysqls List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Aurora Mysql> - Aurora
Postgres List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Aurora Postgre> - Aurora
Postgres List<PiersIams Karsenbarg. Sdm. Inputs. Get Resource Resource Aurora Postgres Iam> - Aws
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Aw> - Aws
Console List<PiersStatic Key Pairs Karsenbarg. Sdm. Inputs. Get Resource Resource Aws Console Static Key Pair> - Aws
Consoles List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Aws Console> - Azure
Certificates List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Azure Certificate> - Azure
Mysqls List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Azure Mysql> - Azure
Postgres List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Azure Postgre> - Azure
Postgres List<PiersManaged Identities Karsenbarg. Sdm. Inputs. Get Resource Resource Azure Postgres Managed Identity> - Azures
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Azure> - Big
Queries List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Big Query> - Cassandras
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Cassandra> - Cituses
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Citus> - Clustrixes
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Clustrix> - Cockroaches
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Cockroach> - Db2Is
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Db2I> - Db2Luws
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Db2Luw> - Document
Db List<PiersHosts Karsenbarg. Sdm. Inputs. Get Resource Resource Document Db Host> - Document
Db List<PiersReplica Sets Karsenbarg. Sdm. Inputs. Get Resource Resource Document Db Replica Set> - Druids
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Druid> - Dynamo
Dbs List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Dynamo Db> - Elasticache
Redis List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Elasticache Redi> - Elastics
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Elastic> - Gcps
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Gcp> - Google
Gke List<PiersUser Impersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Google Gke User Impersonation> - Google
Gkes List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Google Gke> - Greenplums
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Greenplum> - Http
Auths List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Http Auth> - Http
Basic List<PiersAuths Karsenbarg. Sdm. Inputs. Get Resource Resource Http Basic Auth> - Http
No List<PiersAuths Karsenbarg. Sdm. Inputs. Get Resource Resource Http No Auth> - Kubernetes
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Kubernete> - Kubernetes
Basic List<PiersAuths Karsenbarg. Sdm. Inputs. Get Resource Resource Kubernetes Basic Auth> - Kubernetes
Service List<PiersAccount User Impersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Kubernetes Service Account User Impersonation> - Kubernetes
Service List<PiersAccounts Karsenbarg. Sdm. Inputs. Get Resource Resource Kubernetes Service Account> - Kubernetes
User List<PiersImpersonations Karsenbarg. Sdm. Inputs. Get Resource Resource Kubernetes User Impersonation> - Marias
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Maria> - Memcacheds
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Memcached> - Memsqls
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Memsql> - Mongo
Hosts List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Mongo Host> - Mongo
Legacy List<PiersHosts Karsenbarg. Sdm. Inputs. Get Resource Resource Mongo Legacy Host> - Mongo
Legacy List<PiersReplicasets Karsenbarg. Sdm. Inputs. Get Resource Resource Mongo Legacy Replicaset> - Mongo
Replica List<PiersSets Karsenbarg. Sdm. Inputs. Get Resource Resource Mongo Replica Set> - Mongo
Sharded List<PiersClusters Karsenbarg. Sdm. Inputs. Get Resource Resource Mongo Sharded Cluster> - Mtls
Mysqls List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Mtls Mysql> - Mtls
Postgres List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Mtls Postgre> - Mysqls
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Mysql> - Neptune
Iams List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Neptune Iam> - Neptunes
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Neptune> - Oracles
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Oracle> - Postgres
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Postgre> - Prestos
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Presto> - Rabbitmq
Amqp091s List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Rabbitmq Amqp091> - Raw
Tcps List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Raw Tcp> - Rdp
Certs List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Rdp Cert> - Rdps
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Rdp> - Rds
Postgres List<PiersIams Karsenbarg. Sdm. Inputs. Get Resource Resource Rds Postgres Iam> - Redis
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Redi> - Redshifts
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Redshift> - Single
Stores List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Single Store> - Snowflakes
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Snowflake> - Snowsights
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Snowsight> - Sql
Server List<PiersAzure Ads Karsenbarg. Sdm. Inputs. Get Resource Resource Sql Server Azure Ad> - Sql
Server List<PiersKerberos Ads Karsenbarg. Sdm. Inputs. Get Resource Resource Sql Server Kerberos Ad> - Sql
Servers List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Sql Server> - Ssh
Certs List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Ssh Cert> - Ssh
Customer List<PiersKeys Karsenbarg. Sdm. Inputs. Get Resource Resource Ssh Customer Key> - Sshes
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Ssh> - Sybase
Iqs List<PiersKarsenbarg. Sdm. Inputs. Get Resource Resource Sybase Iq> - Sybases
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Sybase> - Teradatas
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Teradata> - Trinos
List<Piers
Karsenbarg. Sdm. Inputs. Get Resource Resource Trino>
- Aks
[]Get
Resource Resource Ak - Aks
Basic []GetAuths Resource Resource Aks Basic Auth - Aks
Service []GetAccount User Impersonations Resource Resource Aks Service Account User Impersonation - Aks
Service []GetAccounts Resource Resource Aks Service Account - Aks
User []GetImpersonations Resource Resource Aks User Impersonation - Amazon
Eks []GetResource Resource Amazon Ek - Amazon
Eks []GetInstance Profile User Impersonations Resource Resource Amazon Eks Instance Profile User Impersonation - Amazon
Eks []GetInstance Profiles Resource Resource Amazon Eks Instance Profile - Amazon
Eks []GetUser Impersonations Resource Resource Amazon Eks User Impersonation - Amazon
Es []GetResource Resource Amazon E - Amazonmq
Amqp091s []GetResource Resource Amazonmq Amqp091 - Athenas
[]Get
Resource Resource Athena - Aurora
Mysqls []GetResource Resource Aurora Mysql - Aurora
Postgres []GetResource Resource Aurora Postgre - Aurora
Postgres []GetIams Resource Resource Aurora Postgres Iam - Aws
[]Get
Resource Resource Aw - Aws
Console []GetStatic Key Pairs Resource Resource Aws Console Static Key Pair - Aws
Consoles []GetResource Resource Aws Console - Azure
Certificates []GetResource Resource Azure Certificate - Azure
Mysqls []GetResource Resource Azure Mysql - Azure
Postgres []GetResource Resource Azure Postgre - Azure
Postgres []GetManaged Identities Resource Resource Azure Postgres Managed Identity - Azures
[]Get
Resource Resource Azure - Big
Queries []GetResource Resource Big Query - Cassandras
[]Get
Resource Resource Cassandra - Cituses
[]Get
Resource Resource Citus - Clustrixes
[]Get
Resource Resource Clustrix - Cockroaches
[]Get
Resource Resource Cockroach - Db2Is
[]Get
Resource Resource Db2I - Db2Luws
[]Get
Resource Resource Db2Luw - Document
Db []GetHosts Resource Resource Document Db Host - Document
Db []GetReplica Sets Resource Resource Document Db Replica Set - Druids
[]Get
Resource Resource Druid - Dynamo
Dbs []GetResource Resource Dynamo Db - Elasticache
Redis []GetResource Resource Elasticache Redi - Elastics
[]Get
Resource Resource Elastic - Gcps
[]Get
Resource Resource Gcp - Google
Gke []GetUser Impersonations Resource Resource Google Gke User Impersonation - Google
Gkes []GetResource Resource Google Gke - Greenplums
[]Get
Resource Resource Greenplum - Http
Auths []GetResource Resource Http Auth - Http
Basic []GetAuths Resource Resource Http Basic Auth - Http
No []GetAuths Resource Resource Http No Auth - Kubernetes
[]Get
Resource Resource Kubernete - Kubernetes
Basic []GetAuths Resource Resource Kubernetes Basic Auth - Kubernetes
Service []GetAccount User Impersonations Resource Resource Kubernetes Service Account User Impersonation - Kubernetes
Service []GetAccounts Resource Resource Kubernetes Service Account - Kubernetes
User []GetImpersonations Resource Resource Kubernetes User Impersonation - Marias
[]Get
Resource Resource Maria - Memcacheds
[]Get
Resource Resource Memcached - Memsqls
[]Get
Resource Resource Memsql - Mongo
Hosts []GetResource Resource Mongo Host - Mongo
Legacy []GetHosts Resource Resource Mongo Legacy Host - Mongo
Legacy []GetReplicasets Resource Resource Mongo Legacy Replicaset - Mongo
Replica []GetSets Resource Resource Mongo Replica Set - Mongo
Sharded []GetClusters Resource Resource Mongo Sharded Cluster - Mtls
Mysqls []GetResource Resource Mtls Mysql - Mtls
Postgres []GetResource Resource Mtls Postgre - Mysqls
[]Get
Resource Resource Mysql - Neptune
Iams []GetResource Resource Neptune Iam - Neptunes
[]Get
Resource Resource Neptune - Oracles
[]Get
Resource Resource Oracle - Postgres
[]Get
Resource Resource Postgre - Prestos
[]Get
Resource Resource Presto - Rabbitmq
Amqp091s []GetResource Resource Rabbitmq Amqp091 - Raw
Tcps []GetResource Resource Raw Tcp - Rdp
Certs []GetResource Resource Rdp Cert - Rdps
[]Get
Resource Resource Rdp - Rds
Postgres []GetIams Resource Resource Rds Postgres Iam - Redis
[]Get
Resource Resource Redi - Redshifts
[]Get
Resource Resource Redshift - Single
Stores []GetResource Resource Single Store - Snowflakes
[]Get
Resource Resource Snowflake - Snowsights
[]Get
Resource Resource Snowsight - Sql
Server []GetAzure Ads Resource Resource Sql Server Azure Ad - Sql
Server []GetKerberos Ads Resource Resource Sql Server Kerberos Ad - Sql
Servers []GetResource Resource Sql Server - Ssh
Certs []GetResource Resource Ssh Cert - Ssh
Customer []GetKeys Resource Resource Ssh Customer Key - Sshes
[]Get
Resource Resource Ssh - Sybase
Iqs []GetResource Resource Sybase Iq - Sybases
[]Get
Resource Resource Sybase - Teradatas
[]Get
Resource Resource Teradata - Trinos
[]Get
Resource Resource Trino
- aks
List<Get
Resource Resource Ak> - aks
Basic List<GetAuths Resource Resource Aks Basic Auth> - aks
Service List<GetAccount User Impersonations Resource Resource Aks Service Account User Impersonation> - aks
Service List<GetAccounts Resource Resource Aks Service Account> - aks
User List<GetImpersonations Resource Resource Aks User Impersonation> - amazon
Eks List<GetResource Resource Amazon Ek> - amazon
Eks List<GetInstance Profile User Impersonations Resource Resource Amazon Eks Instance Profile User Impersonation> - amazon
Eks List<GetInstance Profiles Resource Resource Amazon Eks Instance Profile> - amazon
Eks List<GetUser Impersonations Resource Resource Amazon Eks User Impersonation> - amazon
Es List<GetResource Resource Amazon E> - amazonmq
Amqp091s List<GetResource Resource Amazonmq Amqp091> - athenas
List<Get
Resource Resource Athena> - aurora
Mysqls List<GetResource Resource Aurora Mysql> - aurora
Postgres List<GetResource Resource Aurora Postgre> - aurora
Postgres List<GetIams Resource Resource Aurora Postgres Iam> - aws
List<Get
Resource Resource Aw> - aws
Console List<GetStatic Key Pairs Resource Resource Aws Console Static Key Pair> - aws
Consoles List<GetResource Resource Aws Console> - azure
Certificates List<GetResource Resource Azure Certificate> - azure
Mysqls List<GetResource Resource Azure Mysql> - azure
Postgres List<GetResource Resource Azure Postgre> - azure
Postgres List<GetManaged Identities Resource Resource Azure Postgres Managed Identity> - azures
List<Get
Resource Resource Azure> - big
Queries List<GetResource Resource Big Query> - cassandras
List<Get
Resource Resource Cassandra> - cituses
List<Get
Resource Resource Citus> - clustrixes
List<Get
Resource Resource Clustrix> - cockroaches
List<Get
Resource Resource Cockroach> - db2Is
List<Get
Resource Resource Db2I> - db2Luws
List<Get
Resource Resource Db2Luw> - document
Db List<GetHosts Resource Resource Document Db Host> - document
Db List<GetReplica Sets Resource Resource Document Db Replica Set> - druids
List<Get
Resource Resource Druid> - dynamo
Dbs List<GetResource Resource Dynamo Db> - elasticache
Redis List<GetResource Resource Elasticache Redi> - elastics
List<Get
Resource Resource Elastic> - gcps
List<Get
Resource Resource Gcp> - google
Gke List<GetUser Impersonations Resource Resource Google Gke User Impersonation> - google
Gkes List<GetResource Resource Google Gke> - greenplums
List<Get
Resource Resource Greenplum> - http
Auths List<GetResource Resource Http Auth> - http
Basic List<GetAuths Resource Resource Http Basic Auth> - http
No List<GetAuths Resource Resource Http No Auth> - kubernetes
List<Get
Resource Resource Kubernete> - kubernetes
Basic List<GetAuths Resource Resource Kubernetes Basic Auth> - kubernetes
Service List<GetAccount User Impersonations Resource Resource Kubernetes Service Account User Impersonation> - kubernetes
Service List<GetAccounts Resource Resource Kubernetes Service Account> - kubernetes
User List<GetImpersonations Resource Resource Kubernetes User Impersonation> - marias
List<Get
Resource Resource Maria> - memcacheds
List<Get
Resource Resource Memcached> - memsqls
List<Get
Resource Resource Memsql> - mongo
Hosts List<GetResource Resource Mongo Host> - mongo
Legacy List<GetHosts Resource Resource Mongo Legacy Host> - mongo
Legacy List<GetReplicasets Resource Resource Mongo Legacy Replicaset> - mongo
Replica List<GetSets Resource Resource Mongo Replica Set> - mongo
Sharded List<GetClusters Resource Resource Mongo Sharded Cluster> - mtls
Mysqls List<GetResource Resource Mtls Mysql> - mtls
Postgres List<GetResource Resource Mtls Postgre> - mysqls
List<Get
Resource Resource Mysql> - neptune
Iams List<GetResource Resource Neptune Iam> - neptunes
List<Get
Resource Resource Neptune> - oracles
List<Get
Resource Resource Oracle> - postgres
List<Get
Resource Resource Postgre> - prestos
List<Get
Resource Resource Presto> - rabbitmq
Amqp091s List<GetResource Resource Rabbitmq Amqp091> - raw
Tcps List<GetResource Resource Raw Tcp> - rdp
Certs List<GetResource Resource Rdp Cert> - rdps
List<Get
Resource Resource Rdp> - rds
Postgres List<GetIams Resource Resource Rds Postgres Iam> - redis
List<Get
Resource Resource Redi> - redshifts
List<Get
Resource Resource Redshift> - single
Stores List<GetResource Resource Single Store> - snowflakes
List<Get
Resource Resource Snowflake> - snowsights
List<Get
Resource Resource Snowsight> - sql
Server List<GetAzure Ads Resource Resource Sql Server Azure Ad> - sql
Server List<GetKerberos Ads Resource Resource Sql Server Kerberos Ad> - sql
Servers List<GetResource Resource Sql Server> - ssh
Certs List<GetResource Resource Ssh Cert> - ssh
Customer List<GetKeys Resource Resource Ssh Customer Key> - sshes
List<Get
Resource Resource Ssh> - sybase
Iqs List<GetResource Resource Sybase Iq> - sybases
List<Get
Resource Resource Sybase> - teradatas
List<Get
Resource Resource Teradata> - trinos
List<Get
Resource Resource Trino>
- aks
Get
Resource Resource Ak[] - aks
Basic GetAuths Resource Resource Aks Basic Auth[] - aks
Service GetAccount User Impersonations Resource Resource Aks Service Account User Impersonation[] - aks
Service GetAccounts Resource Resource Aks Service Account[] - aks
User GetImpersonations Resource Resource Aks User Impersonation[] - amazon
Eks GetResource Resource Amazon Ek[] - amazon
Eks GetInstance Profile User Impersonations Resource Resource Amazon Eks Instance Profile User Impersonation[] - amazon
Eks GetInstance Profiles Resource Resource Amazon Eks Instance Profile[] - amazon
Eks GetUser Impersonations Resource Resource Amazon Eks User Impersonation[] - amazon
Es GetResource Resource Amazon E[] - amazonmq
Amqp091s GetResource Resource Amazonmq Amqp091[] - athenas
Get
Resource Resource Athena[] - aurora
Mysqls GetResource Resource Aurora Mysql[] - aurora
Postgres GetResource Resource Aurora Postgre[] - aurora
Postgres GetIams Resource Resource Aurora Postgres Iam[] - aws
Get
Resource Resource Aw[] - aws
Console GetStatic Key Pairs Resource Resource Aws Console Static Key Pair[] - aws
Consoles GetResource Resource Aws Console[] - azure
Certificates GetResource Resource Azure Certificate[] - azure
Mysqls GetResource Resource Azure Mysql[] - azure
Postgres GetResource Resource Azure Postgre[] - azure
Postgres GetManaged Identities Resource Resource Azure Postgres Managed Identity[] - azures
Get
Resource Resource Azure[] - big
Queries GetResource Resource Big Query[] - cassandras
Get
Resource Resource Cassandra[] - cituses
Get
Resource Resource Citus[] - clustrixes
Get
Resource Resource Clustrix[] - cockroaches
Get
Resource Resource Cockroach[] - db2Is
Get
Resource Resource Db2I[] - db2Luws
Get
Resource Resource Db2Luw[] - document
Db GetHosts Resource Resource Document Db Host[] - document
Db GetReplica Sets Resource Resource Document Db Replica Set[] - druids
Get
Resource Resource Druid[] - dynamo
Dbs GetResource Resource Dynamo Db[] - elasticache
Redis GetResource Resource Elasticache Redi[] - elastics
Get
Resource Resource Elastic[] - gcps
Get
Resource Resource Gcp[] - google
Gke GetUser Impersonations Resource Resource Google Gke User Impersonation[] - google
Gkes GetResource Resource Google Gke[] - greenplums
Get
Resource Resource Greenplum[] - http
Auths GetResource Resource Http Auth[] - http
Basic GetAuths Resource Resource Http Basic Auth[] - http
No GetAuths Resource Resource Http No Auth[] - kubernetes
Get
Resource Resource Kubernete[] - kubernetes
Basic GetAuths Resource Resource Kubernetes Basic Auth[] - kubernetes
Service GetAccount User Impersonations Resource Resource Kubernetes Service Account User Impersonation[] - kubernetes
Service GetAccounts Resource Resource Kubernetes Service Account[] - kubernetes
User GetImpersonations Resource Resource Kubernetes User Impersonation[] - marias
Get
Resource Resource Maria[] - memcacheds
Get
Resource Resource Memcached[] - memsqls
Get
Resource Resource Memsql[] - mongo
Hosts GetResource Resource Mongo Host[] - mongo
Legacy GetHosts Resource Resource Mongo Legacy Host[] - mongo
Legacy GetReplicasets Resource Resource Mongo Legacy Replicaset[] - mongo
Replica GetSets Resource Resource Mongo Replica Set[] - mongo
Sharded GetClusters Resource Resource Mongo Sharded Cluster[] - mtls
Mysqls GetResource Resource Mtls Mysql[] - mtls
Postgres GetResource Resource Mtls Postgre[] - mysqls
Get
Resource Resource Mysql[] - neptune
Iams GetResource Resource Neptune Iam[] - neptunes
Get
Resource Resource Neptune[] - oracles
Get
Resource Resource Oracle[] - postgres
Get
Resource Resource Postgre[] - prestos
Get
Resource Resource Presto[] - rabbitmq
Amqp091s GetResource Resource Rabbitmq Amqp091[] - raw
Tcps GetResource Resource Raw Tcp[] - rdp
Certs GetResource Resource Rdp Cert[] - rdps
Get
Resource Resource Rdp[] - rds
Postgres GetIams Resource Resource Rds Postgres Iam[] - redis
Get
Resource Resource Redi[] - redshifts
Get
Resource Resource Redshift[] - single
Stores GetResource Resource Single Store[] - snowflakes
Get
Resource Resource Snowflake[] - snowsights
Get
Resource Resource Snowsight[] - sql
Server GetAzure Ads Resource Resource Sql Server Azure Ad[] - sql
Server GetKerberos Ads Resource Resource Sql Server Kerberos Ad[] - sql
Servers GetResource Resource Sql Server[] - ssh
Certs GetResource Resource Ssh Cert[] - ssh
Customer GetKeys Resource Resource Ssh Customer Key[] - sshes
Get
Resource Resource Ssh[] - sybase
Iqs GetResource Resource Sybase Iq[] - sybases
Get
Resource Resource Sybase[] - teradatas
Get
Resource Resource Teradata[] - trinos
Get
Resource Resource Trino[]
- aks
Sequence[Get
Resource Resource Ak] - aks_
basic_ Sequence[Getauths Resource Resource Aks Basic Auth] - aks_
service_ Sequence[Getaccount_ user_ impersonations Resource Resource Aks Service Account User Impersonation] - aks_
service_ Sequence[Getaccounts Resource Resource Aks Service Account] - aks_
user_ Sequence[Getimpersonations Resource Resource Aks User Impersonation] - amazon_
eks Sequence[GetResource Resource Amazon Ek] - amazon_
eks_ Sequence[Getinstance_ profile_ user_ impersonations Resource Resource Amazon Eks Instance Profile User Impersonation] - amazon_
eks_ Sequence[Getinstance_ profiles Resource Resource Amazon Eks Instance Profile] - amazon_
eks_ Sequence[Getuser_ impersonations Resource Resource Amazon Eks User Impersonation] - amazon_
es Sequence[GetResource Resource Amazon E] - amazonmq_
amqp091s Sequence[GetResource Resource Amazonmq Amqp091] - athenas
Sequence[Get
Resource Resource Athena] - aurora_
mysqls Sequence[GetResource Resource Aurora Mysql] - aurora_
postgres Sequence[GetResource Resource Aurora Postgre] - aurora_
postgres_ Sequence[Getiams Resource Resource Aurora Postgres Iam] - aws
Sequence[Get
Resource Resource Aw] - aws_
console_ Sequence[Getstatic_ key_ pairs Resource Resource Aws Console Static Key Pair] - aws_
consoles Sequence[GetResource Resource Aws Console] - azure_
certificates Sequence[GetResource Resource Azure Certificate] - azure_
mysqls Sequence[GetResource Resource Azure Mysql] - azure_
postgres Sequence[GetResource Resource Azure Postgre] - azure_
postgres_ Sequence[Getmanaged_ identities Resource Resource Azure Postgres Managed Identity] - azures
Sequence[Get
Resource Resource Azure] - big_
queries Sequence[GetResource Resource Big Query] - cassandras
Sequence[Get
Resource Resource Cassandra] - cituses
Sequence[Get
Resource Resource Citus] - clustrixes
Sequence[Get
Resource Resource Clustrix] - cockroaches
Sequence[Get
Resource Resource Cockroach] - db2_
is Sequence[GetResource Resource Db2I] - db2_
luws Sequence[GetResource Resource Db2Luw] - document_
db_ Sequence[Gethosts Resource Resource Document Db Host] - document_
db_ Sequence[Getreplica_ sets Resource Resource Document Db Replica Set] - druids
Sequence[Get
Resource Resource Druid] - dynamo_
dbs Sequence[GetResource Resource Dynamo Db] - elasticache_
redis Sequence[GetResource Resource Elasticache Redi] - elastics
Sequence[Get
Resource Resource Elastic] - gcps
Sequence[Get
Resource Resource Gcp] - google_
gke_ Sequence[Getuser_ impersonations Resource Resource Google Gke User Impersonation] - google_
gkes Sequence[GetResource Resource Google Gke] - greenplums
Sequence[Get
Resource Resource Greenplum] - http_
auths Sequence[GetResource Resource Http Auth] - http_
basic_ Sequence[Getauths Resource Resource Http Basic Auth] - http_
no_ Sequence[Getauths Resource Resource Http No Auth] - kubernetes
Sequence[Get
Resource Resource Kubernete] - kubernetes_
basic_ Sequence[Getauths Resource Resource Kubernetes Basic Auth] - kubernetes_
service_ Sequence[Getaccount_ user_ impersonations Resource Resource Kubernetes Service Account User Impersonation] - kubernetes_
service_ Sequence[Getaccounts Resource Resource Kubernetes Service Account] - kubernetes_
user_ Sequence[Getimpersonations Resource Resource Kubernetes User Impersonation] - marias
Sequence[Get
Resource Resource Maria] - memcacheds
Sequence[Get
Resource Resource Memcached] - memsqls
Sequence[Get
Resource Resource Memsql] - mongo_
hosts Sequence[GetResource Resource Mongo Host] - mongo_
legacy_ Sequence[Gethosts Resource Resource Mongo Legacy Host] - mongo_
legacy_ Sequence[Getreplicasets Resource Resource Mongo Legacy Replicaset] - mongo_
replica_ Sequence[Getsets Resource Resource Mongo Replica Set] - mongo_
sharded_ Sequence[Getclusters Resource Resource Mongo Sharded Cluster] - mtls_
mysqls Sequence[GetResource Resource Mtls Mysql] - mtls_
postgres Sequence[GetResource Resource Mtls Postgre] - mysqls
Sequence[Get
Resource Resource Mysql] - neptune_
iams Sequence[GetResource Resource Neptune Iam] - neptunes
Sequence[Get
Resource Resource Neptune] - oracles
Sequence[Get
Resource Resource Oracle] - postgres
Sequence[Get
Resource Resource Postgre] - prestos
Sequence[Get
Resource Resource Presto] - rabbitmq_
amqp091s Sequence[GetResource Resource Rabbitmq Amqp091] - raw_
tcps Sequence[GetResource Resource Raw Tcp] - rdp_
certs Sequence[GetResource Resource Rdp Cert] - rdps
Sequence[Get
Resource Resource Rdp] - rds_
postgres_ Sequence[Getiams Resource Resource Rds Postgres Iam] - redis
Sequence[Get
Resource Resource Redi] - redshifts
Sequence[Get
Resource Resource Redshift] - single_
stores Sequence[GetResource Resource Single Store] - snowflakes
Sequence[Get
Resource Resource Snowflake] - snowsights
Sequence[Get
Resource Resource Snowsight] - sql_
server_ Sequence[Getazure_ ads Resource Resource Sql Server Azure Ad] - sql_
server_ Sequence[Getkerberos_ ads Resource Resource Sql Server Kerberos Ad] - sql_
servers Sequence[GetResource Resource Sql Server] - ssh_
certs Sequence[GetResource Resource Ssh Cert] - ssh_
customer_ Sequence[Getkeys Resource Resource Ssh Customer Key] - sshes
Sequence[Get
Resource Resource Ssh] - sybase_
iqs Sequence[GetResource Resource Sybase Iq] - sybases
Sequence[Get
Resource Resource Sybase] - teradatas
Sequence[Get
Resource Resource Teradata] - trinos
Sequence[Get
Resource Resource Trino]
- aks List<Property Map>
- aks
Basic List<Property Map>Auths - aks
Service List<Property Map>Account User Impersonations - aks
Service List<Property Map>Accounts - aks
User List<Property Map>Impersonations - amazon
Eks List<Property Map> - amazon
Eks List<Property Map>Instance Profile User Impersonations - amazon
Eks List<Property Map>Instance Profiles - amazon
Eks List<Property Map>User Impersonations - amazon
Es List<Property Map> - amazonmq
Amqp091s List<Property Map> - athenas List<Property Map>
- aurora
Mysqls List<Property Map> - aurora
Postgres List<Property Map> - aurora
Postgres List<Property Map>Iams - aws List<Property Map>
- aws
Console List<Property Map>Static Key Pairs - aws
Consoles List<Property Map> - azure
Certificates List<Property Map> - azure
Mysqls List<Property Map> - azure
Postgres List<Property Map> - azure
Postgres List<Property Map>Managed Identities - azures List<Property Map>
- big
Queries List<Property Map> - cassandras List<Property Map>
- cituses List<Property Map>
- clustrixes List<Property Map>
- cockroaches List<Property Map>
- db2Is List<Property Map>
- db2Luws List<Property Map>
- document
Db List<Property Map>Hosts - document
Db List<Property Map>Replica Sets - druids List<Property Map>
- dynamo
Dbs List<Property Map> - elasticache
Redis List<Property Map> - elastics List<Property Map>
- gcps List<Property Map>
- google
Gke List<Property Map>User Impersonations - google
Gkes List<Property Map> - greenplums List<Property Map>
- http
Auths List<Property Map> - http
Basic List<Property Map>Auths - http
No List<Property Map>Auths - kubernetes List<Property Map>
- kubernetes
Basic List<Property Map>Auths - kubernetes
Service List<Property Map>Account User Impersonations - kubernetes
Service List<Property Map>Accounts - kubernetes
User List<Property Map>Impersonations - marias List<Property Map>
- memcacheds List<Property Map>
- memsqls List<Property Map>
- mongo
Hosts List<Property Map> - mongo
Legacy List<Property Map>Hosts - mongo
Legacy List<Property Map>Replicasets - mongo
Replica List<Property Map>Sets - mongo
Sharded List<Property Map>Clusters - mtls
Mysqls List<Property Map> - mtls
Postgres List<Property Map> - mysqls List<Property Map>
- neptune
Iams List<Property Map> - neptunes List<Property Map>
- oracles List<Property Map>
- postgres List<Property Map>
- prestos List<Property Map>
- rabbitmq
Amqp091s List<Property Map> - raw
Tcps List<Property Map> - rdp
Certs List<Property Map> - rdps List<Property Map>
- rds
Postgres List<Property Map>Iams - redis List<Property Map>
- redshifts List<Property Map>
- single
Stores List<Property Map> - snowflakes List<Property Map>
- snowsights List<Property Map>
- sql
Server List<Property Map>Azure Ads - sql
Server List<Property Map>Kerberos Ads - sql
Servers List<Property Map> - ssh
Certs List<Property Map> - ssh
Customer List<Property Map>Keys - sshes List<Property Map>
- sybase
Iqs List<Property Map> - sybases List<Property Map>
- teradatas List<Property Map>
- trinos List<Property Map>
GetResourceResourceAk
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- client
Certificate string - The certificate to authenticate TLS connections with.
- client
Key string - The key to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- client_
certificate str - The certificate to authenticate TLS connections with.
- client_
key str - The key to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAksBasicAuth
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceAksServiceAccount
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- token str
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
GetResourceResourceAksServiceAccountUserImpersonation
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- token str
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
GetResourceResourceAksUserImpersonation
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- client
Certificate string - The certificate to authenticate TLS connections with.
- client
Key string - The key to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- client_
certificate str - The certificate to authenticate TLS connections with.
- client_
key str - The key to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAmazonE
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAmazonEk
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- cluster
Name string - The name of the cluster to connect to.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- cluster_
name str - The name of the cluster to connect to.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAmazonEksInstanceProfile
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- cluster
Name string - The name of the cluster to connect to.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- cluster_
name str - The name of the cluster to connect to.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAmazonEksInstanceProfileUserImpersonation
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- cluster
Name string - The name of the cluster to connect to.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- cluster_
name str - The name of the cluster to connect to.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAmazonEksUserImpersonation
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Cluster
Name string - The name of the cluster to connect to.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- cluster
Name string - The name of the cluster to connect to.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- cluster_
name str - The name of the cluster to connect to.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- cluster
Name String - The name of the cluster to connect to.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAmazonmqAmqp091
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceAthena
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Output string
- The AWS S3 output location.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Output string
- The AWS S3 output location.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- output String
- The AWS S3 output location.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- output string
- The AWS S3 output location.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- output str
- The AWS S3 output location.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- output String
- The AWS S3 output location.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAuroraMysql
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceAuroraPostgre
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceAuroraPostgresIam
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Assumption stringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Assumption stringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Assumption StringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Assumption stringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
assumption_ strarn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Assumption StringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceAw
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Region string - The AWS region healthcheck requests should attempt to connect to.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Region string - The AWS region healthcheck requests should attempt to connect to.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Region String - The AWS region healthcheck requests should attempt to connect to.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Region string - The AWS region healthcheck requests should attempt to connect to.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
region str - The AWS region healthcheck requests should attempt to connect to.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Region String - The AWS region healthcheck requests should attempt to connect to.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAwsConsole
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Enable
Env boolVariables - If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Session
Expiry int - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Enable
Env boolVariables - If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Session
Expiry int - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- enable
Env BooleanVariables - If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- session
Expiry Integer - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- enable
Env booleanVariables - If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- session
Expiry number - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- enable_
env_ boolvariables - If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- session_
expiry int - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- enable
Env BooleanVariables - If true, prefer environment variables to authenticate connection even if EC2 roles are configured.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- session
Expiry Number - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAwsConsoleStaticKeyPair
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Session
Expiry int - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Session
Expiry int - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- session
Expiry Integer - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- session
Expiry number - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- session_
expiry int - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- session
Expiry Number - The length of time in seconds AWS console sessions will live before needing to reauthenticate.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceAzure
- App
Id string - The application ID to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- App
Id string - The application ID to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app
Id String - The application ID to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tenant
Id String - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app
Id string - The application ID to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app_
id str - The application ID to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tenant_
id str - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app
Id String - The application ID to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tenant
Id String - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
GetResourceResourceAzureCertificate
- App
Id string - The application ID to authenticate with.
- Bind
Interface string - 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.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- App
Id string - The application ID to authenticate with.
- Bind
Interface string - 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.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app
Id String - The application ID to authenticate with.
- bind
Interface String - 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.
- client
Certificate String - The certificate to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tenant
Id String - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app
Id string - The application ID to authenticate with.
- bind
Interface string - 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.
- client
Certificate string - The certificate to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app_
id str - The application ID to authenticate with.
- bind_
interface str - 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.
- client_
certificate str - The certificate to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tenant_
id str - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- app
Id String - The application ID to authenticate with.
- bind
Interface String - 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.
- client
Certificate String - The certificate to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tenant
Id String - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
GetResourceResourceAzureMysql
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceAzurePostgre
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceAzurePostgresManagedIdentity
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceBigQuery
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Private
Key string - The private key used to authenticate with the server.
- Project string
- The project to connect to.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Private
Key string - The private key used to authenticate with the server.
- Project string
- The project to connect to.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- private
Key String - The private key used to authenticate with the server.
- project String
- The project to connect to.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- private
Key string - The private key used to authenticate with the server.
- project string
- The project to connect to.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- private_
key str - The private key used to authenticate with the server.
- project str
- The project to connect to.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- private
Key String - The private key used to authenticate with the server.
- project String
- The project to connect to.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceCassandra
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceCitus
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceClustrix
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceCockroach
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceDb2I
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceDb2Luw
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceDocumentDbHost
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceDocumentDbReplicaSet
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Connect
To boolReplica - Set to connect to a replica instead of the primary node.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Connect
To boolReplica - Set to connect to a replica instead of the primary node.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- connect
To BooleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Integer - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- connect
To booleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port
Override number - The local port used by clients to connect to this resource.
- replica
Set string - The name of the mongo replicaset.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- connect_
to_ boolreplica - Set to connect to a replica instead of the primary node.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port_
override int - The local port used by clients to connect to this resource.
- replica_
set str - The name of the mongo replicaset.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- connect
To BooleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Number - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceDruid
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceDynamoDb
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceElastic
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceElasticacheRedi
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceGcp
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Keyfile string
- The service account keyfile to authenticate with.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Scopes string
- Space separated scopes that this login should assume into when authenticating.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Id string
- Unique identifier of the Resource.
- Keyfile string
- The service account keyfile to authenticate with.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Scopes string
- Space separated scopes that this login should assume into when authenticating.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- keyfile String
- The service account keyfile to authenticate with.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- scopes String
- Space separated scopes that this login should assume into when authenticating.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- id string
- Unique identifier of the Resource.
- keyfile string
- The service account keyfile to authenticate with.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- scopes string
- Space separated scopes that this login should assume into when authenticating.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- id str
- Unique identifier of the Resource.
- keyfile str
- The service account keyfile to authenticate with.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- scopes str
- Space separated scopes that this login should assume into when authenticating.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- id String
- Unique identifier of the Resource.
- keyfile String
- The service account keyfile to authenticate with.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- scopes String
- Space separated scopes that this login should assume into when authenticating.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceGoogleGke
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Service
Account stringKey - The service account key to authenticate with.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Service
Account stringKey - The service account key to authenticate with.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- service
Account StringKey - The service account key to authenticate with.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- service
Account stringKey - The service account key to authenticate with.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- service_
account_ strkey - The service account key to authenticate with.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- service
Account StringKey - The service account key to authenticate with.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceGoogleGkeUserImpersonation
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Service
Account stringKey - The service account key to authenticate with.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Service
Account stringKey - The service account key to authenticate with.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- service
Account StringKey - The service account key to authenticate with.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- service
Account stringKey - The service account key to authenticate with.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- service_
account_ strkey - The service account key to authenticate with.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- service
Account StringKey - The service account key to authenticate with.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceGreenplum
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceHttpAuth
- Auth
Header string - The content to set as the authorization header.
- Bind
Interface string - 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.
- Default
Path string - Automatically redirect to this path upon connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- Healthcheck
Path string - This path will be used to check the health of your site.
- Host
Override string - The host header will be overwritten with this field if provided.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Url string
- The base address of your website without the path.
- kubernetes:
- Auth
Header string - The content to set as the authorization header.
- Bind
Interface string - 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.
- Default
Path string - Automatically redirect to this path upon connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- Healthcheck
Path string - This path will be used to check the health of your site.
- Host
Override string - The host header will be overwritten with this field if provided.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Url string
- The base address of your website without the path.
- kubernetes:
- auth
Header String - The content to set as the authorization header.
- bind
Interface String - 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.
- default
Path String - Automatically redirect to this path upon connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist String - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path String - This path will be used to check the health of your site.
- host
Override String - The host header will be overwritten with this field if provided.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- url String
- The base address of your website without the path.
- kubernetes:
- auth
Header string - The content to set as the authorization header.
- bind
Interface string - 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.
- default
Path string - Automatically redirect to this path upon connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path string - This path will be used to check the health of your site.
- host
Override string - The host header will be overwritten with this field if provided.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- url string
- The base address of your website without the path.
- kubernetes:
- auth_
header str - The content to set as the authorization header.
- bind_
interface str - 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.
- default_
path str - Automatically redirect to this path upon connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- headers_
blacklist str - Header names (e.g. Authorization), to omit from logs.
- healthcheck_
path str - This path will be used to check the health of your site.
- host_
override str - The host header will be overwritten with this field if provided.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- url str
- The base address of your website without the path.
- kubernetes:
- auth
Header String - The content to set as the authorization header.
- bind
Interface String - 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.
- default
Path String - Automatically redirect to this path upon connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist String - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path String - This path will be used to check the health of your site.
- host
Override String - The host header will be overwritten with this field if provided.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- url String
- The base address of your website without the path.
- kubernetes:
GetResourceResourceHttpBasicAuth
- Bind
Interface string - 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.
- Default
Path string - Automatically redirect to this path upon connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- Healthcheck
Path string - This path will be used to check the health of your site.
- Host
Override string - The host header will be overwritten with this field if provided.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Url string
- The base address of your website without the path.
- kubernetes:
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Default
Path string - Automatically redirect to this path upon connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- Healthcheck
Path string - This path will be used to check the health of your site.
- Host
Override string - The host header will be overwritten with this field if provided.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Url string
- The base address of your website without the path.
- kubernetes:
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- default
Path String - Automatically redirect to this path upon connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist String - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path String - This path will be used to check the health of your site.
- host
Override String - The host header will be overwritten with this field if provided.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- url String
- The base address of your website without the path.
- kubernetes:
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- default
Path string - Automatically redirect to this path upon connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path string - This path will be used to check the health of your site.
- host
Override string - The host header will be overwritten with this field if provided.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- url string
- The base address of your website without the path.
- kubernetes:
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- default_
path str - Automatically redirect to this path upon connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- headers_
blacklist str - Header names (e.g. Authorization), to omit from logs.
- healthcheck_
path str - This path will be used to check the health of your site.
- host_
override str - The host header will be overwritten with this field if provided.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- url str
- The base address of your website without the path.
- kubernetes:
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- default
Path String - Automatically redirect to this path upon connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist String - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path String - This path will be used to check the health of your site.
- host
Override String - The host header will be overwritten with this field if provided.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- url String
- The base address of your website without the path.
- kubernetes:
- username String
- The username to authenticate with.
GetResourceResourceHttpNoAuth
- Bind
Interface string - 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.
- Default
Path string - Automatically redirect to this path upon connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- Healthcheck
Path string - This path will be used to check the health of your site.
- Host
Override string - The host header will be overwritten with this field if provided.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Url string
- The base address of your website without the path.
- kubernetes:
- Bind
Interface string - 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.
- Default
Path string - Automatically redirect to this path upon connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- Healthcheck
Path string - This path will be used to check the health of your site.
- Host
Override string - The host header will be overwritten with this field if provided.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Url string
- The base address of your website without the path.
- kubernetes:
- bind
Interface String - 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.
- default
Path String - Automatically redirect to this path upon connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist String - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path String - This path will be used to check the health of your site.
- host
Override String - The host header will be overwritten with this field if provided.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- url String
- The base address of your website without the path.
- kubernetes:
- bind
Interface string - 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.
- default
Path string - Automatically redirect to this path upon connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist string - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path string - This path will be used to check the health of your site.
- host
Override string - The host header will be overwritten with this field if provided.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- url string
- The base address of your website without the path.
- kubernetes:
- bind_
interface str - 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.
- default_
path str - Automatically redirect to this path upon connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- headers_
blacklist str - Header names (e.g. Authorization), to omit from logs.
- healthcheck_
path str - This path will be used to check the health of your site.
- host_
override str - The host header will be overwritten with this field if provided.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- url str
- The base address of your website without the path.
- kubernetes:
- bind
Interface String - 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.
- default
Path String - Automatically redirect to this path upon connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- headers
Blacklist String - Header names (e.g. Authorization), to omit from logs.
- healthcheck
Path String - This path will be used to check the health of your site.
- host
Override String - The host header will be overwritten with this field if provided.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- url String
- The base address of your website without the path.
- kubernetes:
GetResourceResourceKubernete
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- client
Certificate string - The certificate to authenticate TLS connections with.
- client
Key string - The key to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- client_
certificate str - The certificate to authenticate TLS connections with.
- client_
key str - The key to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceKubernetesBasicAuth
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceKubernetesServiceAccount
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- token str
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
GetResourceResourceKubernetesServiceAccountUserImpersonation
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- token string
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- token str
- The API token to authenticate with.
- kubernetes_user_impersonation:
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- token String
- The API token to authenticate with.
- kubernetes_user_impersonation:
GetResourceResourceKubernetesUserImpersonation
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- client
Certificate string - The certificate to authenticate TLS connections with.
- client
Key string - The key to authenticate TLS connections with.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace string - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- client_
certificate str - The certificate to authenticate TLS connections with.
- client_
key str - The key to authenticate TLS connections with.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
namespace str - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Namespace String - The path used to check the health of your connection. Defaults to
default
. This field is required, and is only marked as optional for backwards compatibility. - hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceMaria
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceMemcached
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceMemsql
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceMongoHost
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceMongoLegacyHost
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- replica
Set string - The name of the mongo replicaset.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- replica_
set str - The name of the mongo replicaset.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceMongoLegacyReplicaset
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Connect
To boolReplica - Set to connect to a replica instead of the primary node.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Connect
To boolReplica - Set to connect to a replica instead of the primary node.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- connect
To BooleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- connect
To booleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- replica
Set string - The name of the mongo replicaset.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- connect_
to_ boolreplica - Set to connect to a replica instead of the primary node.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- replica_
set str - The name of the mongo replicaset.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- connect
To BooleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceMongoReplicaSet
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Connect
To boolReplica - Set to connect to a replica instead of the primary node.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Connect
To boolReplica - Set to connect to a replica instead of the primary node.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Replica
Set string - The name of the mongo replicaset.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- connect
To BooleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- connect
To booleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- replica
Set string - The name of the mongo replicaset.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- connect_
to_ boolreplica - Set to connect to a replica instead of the primary node.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- replica_
set str - The name of the mongo replicaset.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- connect
To BooleanReplica - Set to connect to a replica instead of the primary node.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- replica
Set String - The name of the mongo replicaset.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceMongoShardedCluster
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Auth
Database string - The authentication database to use.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- auth
Database string - The authentication database to use.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- auth_
database str - The authentication database to use.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- auth
Database String - The authentication database to use.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceMtlsMysql
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Server
Name string - Server name for TLS verification (unverified by StrongDM if empty)
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Server
Name string - Server name for TLS verification (unverified by StrongDM if empty)
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- server
Name String - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- client
Certificate string - The certificate to authenticate TLS connections with.
- client
Key string - The key to authenticate TLS connections with.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- server
Name string - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- client_
certificate str - The certificate to authenticate TLS connections with.
- client_
key str - The key to authenticate TLS connections with.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- server_
name str - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- server
Name String - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceMtlsPostgre
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Server
Name string - Server name for TLS verification (unverified by StrongDM if empty)
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- Client
Certificate string - The certificate to authenticate TLS connections with.
- Client
Key string - The key to authenticate TLS connections with.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Server
Name string - Server name for TLS verification (unverified by StrongDM if empty)
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- server
Name String - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- string
- The CA to authenticate TLS connections with.
- client
Certificate string - The certificate to authenticate TLS connections with.
- client
Key string - The key to authenticate TLS connections with.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- server
Name string - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- str
- The CA to authenticate TLS connections with.
- client_
certificate str - The certificate to authenticate TLS connections with.
- client_
key str - The key to authenticate TLS connections with.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- server_
name str - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- String
- The CA to authenticate TLS connections with.
- client
Certificate String - The certificate to authenticate TLS connections with.
- client
Key String - The key to authenticate TLS connections with.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- server
Name String - Server name for TLS verification (unverified by StrongDM if empty)
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceMysql
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceNeptune
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceNeptuneIam
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Access
Key string - The Access Key ID to use to authenticate.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Arn string - The role to assume after logging in.
- Role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- Secret
Access stringKey - The Secret Access Key to use to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- access
Key string - The Access Key ID to use to authenticate.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- endpoint string
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Arn string - The role to assume after logging in.
- role
External stringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access stringKey - The Secret Access Key to use to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- access_
key str - The Access Key ID to use to authenticate.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- endpoint str
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
arn str - The role to assume after logging in.
- role_
external_ strid - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret_
access_ strkey - The Secret Access Key to use to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- access
Key String - The Access Key ID to use to authenticate.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- endpoint String
- The neptune endpoint to connect to as in endpoint.region.neptune.amazonaws.com
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Arn String - The role to assume after logging in.
- role
External StringId - The external ID to associate with assume role requests. Does nothing if a role ARN is not provided.
- secret
Access StringKey - The Secret Access Key to use to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceOracle
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourcePostgre
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourcePresto
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceRabbitmqAmqp091
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceRawTcp
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceRdp
- Bind
Interface string - 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.
- Downgrade
Nla boolConnections - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Lock
Required bool - When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Downgrade
Nla boolConnections - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Lock
Required bool - When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- downgrade
Nla BooleanConnections - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- lock
Required Boolean - When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- downgrade
Nla booleanConnections - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- lock
Required boolean - When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- downgrade_
nla_ boolconnections - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- lock_
required bool - When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- downgrade
Nla BooleanConnections - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- lock
Required Boolean - When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceRdpCert
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceRdsPostgresIam
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Assumption stringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Region string
- The AWS region to connect to.
- Role
Assumption stringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Assumption StringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- region string
- The AWS region to connect to.
- role
Assumption stringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- region str
- The AWS region to connect to.
- role_
assumption_ strarn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- region String
- The AWS region to connect to.
- role
Assumption StringArn - If provided, the gateway/relay will try to assume this role instead of the underlying compute's role.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceRedi
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tls
Required bool - If set, TLS must be used to connect to this resource.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tls
Required boolean - If set, TLS must be used to connect to this resource.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tls_
required bool - If set, TLS must be used to connect to this resource.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tls
Required Boolean - If set, TLS must be used to connect to this resource.
- username String
- The username to authenticate with.
GetResourceResourceRedshift
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSingleStore
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Require
Native boolAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Use
Azure boolSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- require
Native booleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- use
Azure booleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- require_
native_ boolauth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- use_
azure_ boolsingle_ server_ usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- require
Native BooleanAuth - Whether native auth (mysql_native_password) is used for all connections (for backwards compatibility)
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- use
Azure BooleanSingle Server Usernames - If true, appends the hostname to the username when hitting a database.azure.com address
- username String
- The username to authenticate with.
GetResourceResourceSnowflake
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Schema string
- The Schema to use to direct initial requests.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port
Override int - The local port used by clients to connect to this resource.
- Schema string
- The Schema to use to direct initial requests.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Integer - The local port used by clients to connect to this resource.
- schema String
- The Schema to use to direct initial requests.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port
Override number - The local port used by clients to connect to this resource.
- schema string
- The Schema to use to direct initial requests.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port_
override int - The local port used by clients to connect to this resource.
- schema str
- The Schema to use to direct initial requests.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port
Override Number - The local port used by clients to connect to this resource.
- schema String
- The Schema to use to direct initial requests.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSnowsight
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Username string - The StrongDM user email to use for healthchecks.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Saml
Metadata string - The Metadata for your snowflake IDP integration
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Healthcheck
Username string - The StrongDM user email to use for healthchecks.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Saml
Metadata string - The Metadata for your snowflake IDP integration
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Username String - The StrongDM user email to use for healthchecks.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- saml
Metadata String - The Metadata for your snowflake IDP integration
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Username string - The StrongDM user email to use for healthchecks.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port
Override number - The local port used by clients to connect to this resource.
- saml
Metadata string - The Metadata for your snowflake IDP integration
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck_
username str - The StrongDM user email to use for healthchecks.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port_
override int - The local port used by clients to connect to this resource.
- saml_
metadata str - The Metadata for your snowflake IDP integration
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- healthcheck
Username String - The StrongDM user email to use for healthchecks.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port
Override Number - The local port used by clients to connect to this resource.
- saml
Metadata String - The Metadata for your snowflake IDP integration
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
GetResourceResourceSqlServer
- Allow
Deprecated boolEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Schema string
- The Schema to use to direct initial requests.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Allow
Deprecated boolEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Schema string
- The Schema to use to direct initial requests.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- allow
Deprecated BooleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- schema String
- The Schema to use to direct initial requests.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- allow
Deprecated booleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- schema string
- The Schema to use to direct initial requests.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- allow_
deprecated_ boolencryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- schema str
- The Schema to use to direct initial requests.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- allow
Deprecated BooleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- schema String
- The Schema to use to direct initial requests.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSqlServerAzureAd
- Allow
Deprecated boolEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- Bind
Interface string - 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.
- Client
Id string - The Azure AD application (client) ID with which to authenticate.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Schema string
- The Schema to use to direct initial requests.
- Secret string
- The Azure AD client secret (application password) with which to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- Allow
Deprecated boolEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- Bind
Interface string - 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.
- Client
Id string - The Azure AD application (client) ID with which to authenticate.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Schema string
- The Schema to use to direct initial requests.
- Secret string
- The Azure AD client secret (application password) with which to authenticate.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- allow
Deprecated BooleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface String - 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.
- client
Id String - The Azure AD application (client) ID with which to authenticate.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- schema String
- The Schema to use to direct initial requests.
- secret String
- The Azure AD client secret (application password) with which to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- tenant
Id String - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- allow
Deprecated booleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface string - 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.
- client
Id string - The Azure AD application (client) ID with which to authenticate.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- schema string
- The Schema to use to direct initial requests.
- secret string
- The Azure AD client secret (application password) with which to authenticate.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- tenant
Id string - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- allow_
deprecated_ boolencryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind_
interface str - 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.
- client_
id str - The Azure AD application (client) ID with which to authenticate.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- schema str
- The Schema to use to direct initial requests.
- secret str
- The Azure AD client secret (application password) with which to authenticate.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- tenant_
id str - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
- allow
Deprecated BooleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface String - 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.
- client
Id String - The Azure AD application (client) ID with which to authenticate.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- schema String
- The Schema to use to direct initial requests.
- secret String
- The Azure AD client secret (application password) with which to authenticate.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- tenant
Id String - The Azure AD directory (tenant) ID with which to authenticate.
- sql_server_kerberos_ad:
GetResourceResourceSqlServerKerberosAd
- Allow
Deprecated boolEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Keytab string
- The keytab file in base64 format containing an entry with the principal name (username@realm) and key version number with which to authenticate.
- Krb
Config string - The Kerberos 5 configuration file (krb5.conf) specifying the Active Directory server (KDC) for the configured realm.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Realm string
- The Active Directory domain (realm) to which the configured username belongs.
- Schema string
- The Schema to use to direct initial requests.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Server
Spn string - The Service Principal Name of the Microsoft SQL Server instance in Active Directory.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Allow
Deprecated boolEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Keytab string
- The keytab file in base64 format containing an entry with the principal name (username@realm) and key version number with which to authenticate.
- Krb
Config string - The Kerberos 5 configuration file (krb5.conf) specifying the Active Directory server (KDC) for the configured realm.
- Name string
- Unique human-readable name of the Resource.
- Override
Database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Realm string
- The Active Directory domain (realm) to which the configured username belongs.
- Schema string
- The Schema to use to direct initial requests.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Server
Spn string - The Service Principal Name of the Microsoft SQL Server instance in Active Directory.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- allow
Deprecated BooleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- keytab String
- The keytab file in base64 format containing an entry with the principal name (username@realm) and key version number with which to authenticate.
- krb
Config String - The Kerberos 5 configuration file (krb5.conf) specifying the Active Directory server (KDC) for the configured realm.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- realm String
- The Active Directory domain (realm) to which the configured username belongs.
- schema String
- The Schema to use to direct initial requests.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- server
Spn String - The Service Principal Name of the Microsoft SQL Server instance in Active Directory.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- allow
Deprecated booleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- keytab string
- The keytab file in base64 format containing an entry with the principal name (username@realm) and key version number with which to authenticate.
- krb
Config string - The Kerberos 5 configuration file (krb5.conf) specifying the Active Directory server (KDC) for the configured realm.
- name string
- Unique human-readable name of the Resource.
- override
Database boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- realm string
- The Active Directory domain (realm) to which the configured username belongs.
- schema string
- The Schema to use to direct initial requests.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- server
Spn string - The Service Principal Name of the Microsoft SQL Server instance in Active Directory.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- allow_
deprecated_ boolencryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- keytab str
- The keytab file in base64 format containing an entry with the principal name (username@realm) and key version number with which to authenticate.
- krb_
config str - The Kerberos 5 configuration file (krb5.conf) specifying the Active Directory server (KDC) for the configured realm.
- name str
- Unique human-readable name of the Resource.
- override_
database bool - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- realm str
- The Active Directory domain (realm) to which the configured username belongs.
- schema str
- The Schema to use to direct initial requests.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- server_
spn str - The Service Principal Name of the Microsoft SQL Server instance in Active Directory.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- allow
Deprecated BooleanEncryption - Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS 1.0.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- keytab String
- The keytab file in base64 format containing an entry with the principal name (username@realm) and key version number with which to authenticate.
- krb
Config String - The Kerberos 5 configuration file (krb5.conf) specifying the Active Directory server (KDC) for the configured realm.
- name String
- Unique human-readable name of the Resource.
- override
Database Boolean - If set, the database configured cannot be changed by users. This setting is not recommended for most use cases, as some clients will insist their database has changed when it has not, leading to user confusion.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- realm String
- The Active Directory domain (realm) to which the configured username belongs.
- schema String
- The Schema to use to direct initial requests.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- server
Spn String - The Service Principal Name of the Microsoft SQL Server instance in Active Directory.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSsh
- Public
Key string - The public key to append to a server's authorized keys. This will be generated after resource creation.
- Allow
Deprecated boolKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Key
Type string - The key type to use e.g. rsa-2048 or ed25519
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Forwarding bool - Whether port forwarding is allowed through this server.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Public
Key string - The public key to append to a server's authorized keys. This will be generated after resource creation.
- Allow
Deprecated boolKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Key
Type string - The key type to use e.g. rsa-2048 or ed25519
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Forwarding bool - Whether port forwarding is allowed through this server.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- public
Key String - The public key to append to a server's authorized keys. This will be generated after resource creation.
- allow
Deprecated BooleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- key
Type String - The key type to use e.g. rsa-2048 or ed25519
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding Boolean - Whether port forwarding is allowed through this server.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- public
Key string - The public key to append to a server's authorized keys. This will be generated after resource creation.
- allow
Deprecated booleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- key
Type string - The key type to use e.g. rsa-2048 or ed25519
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding boolean - Whether port forwarding is allowed through this server.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- public_
key str - The public key to append to a server's authorized keys. This will be generated after resource creation.
- allow_
deprecated_ boolkey_ exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- key_
type str - The key type to use e.g. rsa-2048 or ed25519
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
forwarding bool - Whether port forwarding is allowed through this server.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- public
Key String - The public key to append to a server's authorized keys. This will be generated after resource creation.
- allow
Deprecated BooleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- key
Type String - The key type to use e.g. rsa-2048 or ed25519
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding Boolean - Whether port forwarding is allowed through this server.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSshCert
- Allow
Deprecated boolKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Key
Type string - The key type to use e.g. rsa-2048 or ed25519
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Forwarding bool - Whether port forwarding is allowed through this server.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Allow
Deprecated boolKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Key
Type string - The key type to use e.g. rsa-2048 or ed25519
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Forwarding bool - Whether port forwarding is allowed through this server.
- Port
Override int - The local port used by clients to connect to this resource.
- Remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- Remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- allow
Deprecated BooleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- key
Type String - The key type to use e.g. rsa-2048 or ed25519
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding Boolean - Whether port forwarding is allowed through this server.
- port
Override Integer - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- allow
Deprecated booleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- key
Type string - The key type to use e.g. rsa-2048 or ed25519
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding boolean - Whether port forwarding is allowed through this server.
- port
Override number - The local port used by clients to connect to this resource.
- remote
Identity stringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity stringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- allow_
deprecated_ boolkey_ exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- key_
type str - The key type to use e.g. rsa-2048 or ed25519
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
forwarding bool - Whether port forwarding is allowed through this server.
- port_
override int - The local port used by clients to connect to this resource.
- remote_
identity_ strgroup_ id - The ID of the remote identity group to use for remote identity connections.
- remote_
identity_ strhealthcheck_ username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- allow
Deprecated BooleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- key
Type String - The key type to use e.g. rsa-2048 or ed25519
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding Boolean - Whether port forwarding is allowed through this server.
- port
Override Number - The local port used by clients to connect to this resource.
- remote
Identity StringGroup Id - The ID of the remote identity group to use for remote identity connections.
- remote
Identity StringHealthcheck Username - The username to use for healthchecks, when clients otherwise connect with their own remote identity username.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSshCustomerKey
- Allow
Deprecated boolKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Forwarding bool - Whether port forwarding is allowed through this server.
- Port
Override int - The local port used by clients to connect to this resource.
- Private
Key string - The private key used to authenticate with the server.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Allow
Deprecated boolKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Forwarding bool - Whether port forwarding is allowed through this server.
- Port
Override int - The local port used by clients to connect to this resource.
- Private
Key string - The private key used to authenticate with the server.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- allow
Deprecated BooleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding Boolean - Whether port forwarding is allowed through this server.
- port
Override Integer - The local port used by clients to connect to this resource.
- private
Key String - The private key used to authenticate with the server.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- allow
Deprecated booleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding boolean - Whether port forwarding is allowed through this server.
- port
Override number - The local port used by clients to connect to this resource.
- private
Key string - The private key used to authenticate with the server.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- allow_
deprecated_ boolkey_ exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
forwarding bool - Whether port forwarding is allowed through this server.
- port_
override int - The local port used by clients to connect to this resource.
- private_
key str - The private key used to authenticate with the server.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- allow
Deprecated BooleanKey Exchanges - Whether deprecated, insecure key exchanges are allowed for use to connect to the target ssh server.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Forwarding Boolean - Whether port forwarding is allowed through this server.
- port
Override Number - The local port used by clients to connect to this resource.
- private
Key String - The private key used to authenticate with the server.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSybase
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceSybaseIq
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceTeradata
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
GetResourceResourceTrino
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Dictionary<string, string>
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- Bind
Interface string - 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.
- Database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- Egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- Hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- Id string
- Unique identifier of the Resource.
- Name string
- Unique human-readable name of the Resource.
- Password string
- The password to authenticate with.
- Port int
- The port to dial to initiate a connection from the egress node to this resource.
- Port
Override int - The local port used by clients to connect to this resource.
- Secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- Subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- map[string]string
- Tags is a map of key, value pairs.
- Username string
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Integer
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Integer - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String,String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
- bind
Interface string - 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.
- database string
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter string - A filter applied to the routing logic to pin datasource to nodes.
- hostname string
- The host to dial to initiate a connection from the egress node to this resource.
- id string
- Unique identifier of the Resource.
- name string
- Unique human-readable name of the Resource.
- password string
- The password to authenticate with.
- port number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override number - The local port used by clients to connect to this resource.
- secret
Store stringId - ID of the secret store containing credentials for this resource, if any.
- subdomain string
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- {[key: string]: string}
- Tags is a map of key, value pairs.
- username string
- The username to authenticate with.
- bind_
interface str - 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.
- database str
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress_
filter str - A filter applied to the routing logic to pin datasource to nodes.
- hostname str
- The host to dial to initiate a connection from the egress node to this resource.
- id str
- Unique identifier of the Resource.
- name str
- Unique human-readable name of the Resource.
- password str
- The password to authenticate with.
- port int
- The port to dial to initiate a connection from the egress node to this resource.
- port_
override int - The local port used by clients to connect to this resource.
- secret_
store_ strid - ID of the secret store containing credentials for this resource, if any.
- subdomain str
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Mapping[str, str]
- Tags is a map of key, value pairs.
- username str
- The username to authenticate with.
- bind
Interface String - 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.
- database String
- The initial database to connect to. This setting does not by itself prevent switching to another database after connecting.
- egress
Filter String - A filter applied to the routing logic to pin datasource to nodes.
- hostname String
- The host to dial to initiate a connection from the egress node to this resource.
- id String
- Unique identifier of the Resource.
- name String
- Unique human-readable name of the Resource.
- password String
- The password to authenticate with.
- port Number
- The port to dial to initiate a connection from the egress node to this resource.
- port
Override Number - The local port used by clients to connect to this resource.
- secret
Store StringId - ID of the secret store containing credentials for this resource, if any.
- subdomain String
- Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
- Map<String>
- Tags is a map of key, value pairs.
- username String
- The username to authenticate with.
Package Details
- Repository
- sdm pierskarsenbarg/pulumi-sdm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdm
Terraform Provider.