1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationRedis
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

airbyte.DestinationRedis

Explore with Pulumi AI

airbyte logo
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

    DestinationRedis Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.DestinationRedis;
    import com.pulumi.airbyte.DestinationRedisArgs;
    import com.pulumi.airbyte.inputs.DestinationRedisConfigurationArgs;
    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) {
            var myDestinationRedis = new DestinationRedis("myDestinationRedis", DestinationRedisArgs.builder()
                .configuration(DestinationRedisConfigurationArgs.builder()
                    .cache_type("hash")
                    .host("localhost,127.0.0.1")
                    .password("...my_password...")
                    .port(31782)
                    .ssl(false)
                    .ssl_mode(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .username("...my_username...")
                    .build())
                .definitionId("08bb0713-356c-488b-92c9-dca7b330d808")
                .workspaceId("689f014e-fdd2-4302-a299-7c4cc3f23969")
                .build());
    
        }
    }
    
    resources:
      myDestinationRedis:
        type: airbyte:DestinationRedis
        properties:
          configuration:
            cache_type: hash
            host: localhost,127.0.0.1
            password: '...my_password...'
            port: 31782
            ssl: false
            ssl_mode:
              disable: {}
            tunnel_method:
              passwordAuthentication:
                tunnelHost: '...my_tunnel_host...'
                tunnelPort: 22
                tunnelUser: '...my_tunnel_user...'
                tunnelUserPassword: '...my_tunnel_user_password...'
            username: '...my_username...'
          definitionId: 08bb0713-356c-488b-92c9-dca7b330d808
          workspaceId: 689f014e-fdd2-4302-a299-7c4cc3f23969
    

    Create DestinationRedis Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DestinationRedis(name: string, args: DestinationRedisArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationRedis(resource_name: str,
                         args: DestinationRedisArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationRedis(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         configuration: Optional[DestinationRedisConfigurationArgs] = None,
                         workspace_id: Optional[str] = None,
                         definition_id: Optional[str] = None,
                         name: Optional[str] = None)
    func NewDestinationRedis(ctx *Context, name string, args DestinationRedisArgs, opts ...ResourceOption) (*DestinationRedis, error)
    public DestinationRedis(string name, DestinationRedisArgs args, CustomResourceOptions? opts = null)
    public DestinationRedis(String name, DestinationRedisArgs args)
    public DestinationRedis(String name, DestinationRedisArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationRedis
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DestinationRedisArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DestinationRedisArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DestinationRedisArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationRedisArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationRedisArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var destinationRedisResource = new Airbyte.DestinationRedis("destinationRedisResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationRedisConfigurationArgs
        {
            Host = "string",
            Username = "string",
            CacheType = "string",
            Password = "string",
            Port = 0,
            Ssl = false,
            SslMode = new Airbyte.Inputs.DestinationRedisConfigurationSslModeArgs
            {
                Disable = null,
                VerifyFull = new Airbyte.Inputs.DestinationRedisConfigurationSslModeVerifyFullArgs
                {
                    CaCertificate = "string",
                    ClientCertificate = "string",
                    ClientKey = "string",
                    ClientKeyPassword = "string",
                },
            },
            TunnelMethod = new Airbyte.Inputs.DestinationRedisConfigurationTunnelMethodArgs
            {
                NoTunnel = null,
                PasswordAuthentication = new Airbyte.Inputs.DestinationRedisConfigurationTunnelMethodPasswordAuthenticationArgs
                {
                    TunnelHost = "string",
                    TunnelUser = "string",
                    TunnelUserPassword = "string",
                    TunnelPort = 0,
                },
                SshKeyAuthentication = new Airbyte.Inputs.DestinationRedisConfigurationTunnelMethodSshKeyAuthenticationArgs
                {
                    SshKey = "string",
                    TunnelHost = "string",
                    TunnelUser = "string",
                    TunnelPort = 0,
                },
            },
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationRedis(ctx, "destinationRedisResource", &airbyte.DestinationRedisArgs{
    Configuration: &.DestinationRedisConfigurationArgs{
    Host: pulumi.String("string"),
    Username: pulumi.String("string"),
    CacheType: pulumi.String("string"),
    Password: pulumi.String("string"),
    Port: pulumi.Float64(0),
    Ssl: pulumi.Bool(false),
    SslMode: &.DestinationRedisConfigurationSslModeArgs{
    Disable: &.DestinationRedisConfigurationSslModeDisableArgs{
    },
    VerifyFull: &.DestinationRedisConfigurationSslModeVerifyFullArgs{
    CaCertificate: pulumi.String("string"),
    ClientCertificate: pulumi.String("string"),
    ClientKey: pulumi.String("string"),
    ClientKeyPassword: pulumi.String("string"),
    },
    },
    TunnelMethod: &.DestinationRedisConfigurationTunnelMethodArgs{
    NoTunnel: &.DestinationRedisConfigurationTunnelMethodNoTunnelArgs{
    },
    PasswordAuthentication: &.DestinationRedisConfigurationTunnelMethodPasswordAuthenticationArgs{
    TunnelHost: pulumi.String("string"),
    TunnelUser: pulumi.String("string"),
    TunnelUserPassword: pulumi.String("string"),
    TunnelPort: pulumi.Float64(0),
    },
    SshKeyAuthentication: &.DestinationRedisConfigurationTunnelMethodSshKeyAuthenticationArgs{
    SshKey: pulumi.String("string"),
    TunnelHost: pulumi.String("string"),
    TunnelUser: pulumi.String("string"),
    TunnelPort: pulumi.Float64(0),
    },
    },
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationRedisResource = new DestinationRedis("destinationRedisResource", DestinationRedisArgs.builder()
        .configuration(DestinationRedisConfigurationArgs.builder()
            .host("string")
            .username("string")
            .cacheType("string")
            .password("string")
            .port(0)
            .ssl(false)
            .sslMode(DestinationRedisConfigurationSslModeArgs.builder()
                .disable()
                .verifyFull(DestinationRedisConfigurationSslModeVerifyFullArgs.builder()
                    .caCertificate("string")
                    .clientCertificate("string")
                    .clientKey("string")
                    .clientKeyPassword("string")
                    .build())
                .build())
            .tunnelMethod(DestinationRedisConfigurationTunnelMethodArgs.builder()
                .noTunnel()
                .passwordAuthentication(DestinationRedisConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
                    .tunnelHost("string")
                    .tunnelUser("string")
                    .tunnelUserPassword("string")
                    .tunnelPort(0)
                    .build())
                .sshKeyAuthentication(DestinationRedisConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
                    .sshKey("string")
                    .tunnelHost("string")
                    .tunnelUser("string")
                    .tunnelPort(0)
                    .build())
                .build())
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_redis_resource = airbyte.DestinationRedis("destinationRedisResource",
        configuration={
            "host": "string",
            "username": "string",
            "cache_type": "string",
            "password": "string",
            "port": 0,
            "ssl": False,
            "ssl_mode": {
                "disable": {},
                "verify_full": {
                    "ca_certificate": "string",
                    "client_certificate": "string",
                    "client_key": "string",
                    "client_key_password": "string",
                },
            },
            "tunnel_method": {
                "no_tunnel": {},
                "password_authentication": {
                    "tunnel_host": "string",
                    "tunnel_user": "string",
                    "tunnel_user_password": "string",
                    "tunnel_port": 0,
                },
                "ssh_key_authentication": {
                    "ssh_key": "string",
                    "tunnel_host": "string",
                    "tunnel_user": "string",
                    "tunnel_port": 0,
                },
            },
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationRedisResource = new airbyte.DestinationRedis("destinationRedisResource", {
        configuration: {
            host: "string",
            username: "string",
            cacheType: "string",
            password: "string",
            port: 0,
            ssl: false,
            sslMode: {
                disable: {},
                verifyFull: {
                    caCertificate: "string",
                    clientCertificate: "string",
                    clientKey: "string",
                    clientKeyPassword: "string",
                },
            },
            tunnelMethod: {
                noTunnel: {},
                passwordAuthentication: {
                    tunnelHost: "string",
                    tunnelUser: "string",
                    tunnelUserPassword: "string",
                    tunnelPort: 0,
                },
                sshKeyAuthentication: {
                    sshKey: "string",
                    tunnelHost: "string",
                    tunnelUser: "string",
                    tunnelPort: 0,
                },
            },
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationRedis
    properties:
        configuration:
            cacheType: string
            host: string
            password: string
            port: 0
            ssl: false
            sslMode:
                disable: {}
                verifyFull:
                    caCertificate: string
                    clientCertificate: string
                    clientKey: string
                    clientKeyPassword: string
            tunnelMethod:
                noTunnel: {}
                passwordAuthentication:
                    tunnelHost: string
                    tunnelPort: 0
                    tunnelUser: string
                    tunnelUserPassword: string
                sshKeyAuthentication:
                    sshKey: string
                    tunnelHost: string
                    tunnelPort: 0
                    tunnelUser: string
            username: string
        definitionId: string
        name: string
        workspaceId: string
    

    DestinationRedis Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DestinationRedis resource accepts the following input properties:

    Configuration DestinationRedisConfiguration
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationRedisConfigurationArgs
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationRedisConfiguration
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationRedisConfiguration
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationRedisConfigurationArgs
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    configuration Property Map
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationRedis resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    resource_allocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.

    Look up Existing DestinationRedis Resource

    Get an existing DestinationRedis resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DestinationRedisState, opts?: CustomResourceOptions): DestinationRedis
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationRedisConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[DestinationRedisResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> DestinationRedis
    func GetDestinationRedis(ctx *Context, name string, id IDInput, state *DestinationRedisState, opts ...ResourceOption) (*DestinationRedis, error)
    public static DestinationRedis Get(string name, Input<string> id, DestinationRedisState? state, CustomResourceOptions? opts = null)
    public static DestinationRedis get(String name, Output<String> id, DestinationRedisState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationRedis    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Configuration DestinationRedisConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    Configuration DestinationRedisConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationRedisResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    configuration DestinationRedisConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String
    configuration DestinationRedisConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationRedisResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId string
    configuration DestinationRedisConfigurationArgs
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    resource_allocation DestinationRedisResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String

    Supporting Types

    DestinationRedisConfiguration, DestinationRedisConfigurationArgs

    Host string
    Redis host to connect to.
    Username string
    Username associated with Redis.
    CacheType string
    Redis cache type to store data in. Default: "hash"; must be "hash"
    Password string
    Password associated with Redis.
    Port double
    Port of Redis. Default: 6379
    Ssl bool
    Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. Default: false
    SslMode DestinationRedisConfigurationSslMode
    SSL connection modes. \n\n\n\nverify-full\n\n - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    TunnelMethod DestinationRedisConfigurationTunnelMethod
    Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
    Host string
    Redis host to connect to.
    Username string
    Username associated with Redis.
    CacheType string
    Redis cache type to store data in. Default: "hash"; must be "hash"
    Password string
    Password associated with Redis.
    Port float64
    Port of Redis. Default: 6379
    Ssl bool
    Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. Default: false
    SslMode DestinationRedisConfigurationSslMode
    SSL connection modes. \n\n\n\nverify-full\n\n - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    TunnelMethod DestinationRedisConfigurationTunnelMethod
    Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
    host String
    Redis host to connect to.
    username String
    Username associated with Redis.
    cacheType String
    Redis cache type to store data in. Default: "hash"; must be "hash"
    password String
    Password associated with Redis.
    port Double
    Port of Redis. Default: 6379
    ssl Boolean
    Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. Default: false
    sslMode DestinationRedisConfigurationSslMode
    SSL connection modes. \n\n\n\nverify-full\n\n - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    tunnelMethod DestinationRedisConfigurationTunnelMethod
    Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
    host string
    Redis host to connect to.
    username string
    Username associated with Redis.
    cacheType string
    Redis cache type to store data in. Default: "hash"; must be "hash"
    password string
    Password associated with Redis.
    port number
    Port of Redis. Default: 6379
    ssl boolean
    Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. Default: false
    sslMode DestinationRedisConfigurationSslMode
    SSL connection modes. \n\n\n\nverify-full\n\n - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    tunnelMethod DestinationRedisConfigurationTunnelMethod
    Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
    host str
    Redis host to connect to.
    username str
    Username associated with Redis.
    cache_type str
    Redis cache type to store data in. Default: "hash"; must be "hash"
    password str
    Password associated with Redis.
    port float
    Port of Redis. Default: 6379
    ssl bool
    Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. Default: false
    ssl_mode DestinationRedisConfigurationSslMode
    SSL connection modes. \n\n\n\nverify-full\n\n - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    tunnel_method DestinationRedisConfigurationTunnelMethod
    Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
    host String
    Redis host to connect to.
    username String
    Username associated with Redis.
    cacheType String
    Redis cache type to store data in. Default: "hash"; must be "hash"
    password String
    Password associated with Redis.
    port Number
    Port of Redis. Default: 6379
    ssl Boolean
    Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. Default: false
    sslMode Property Map
    SSL connection modes. \n\n\n\nverify-full\n\n - This is the most secure mode. Always require encryption and verifies the identity of the source database server
    tunnelMethod Property Map
    Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.

    DestinationRedisConfigurationSslMode, DestinationRedisConfigurationSslModeArgs

    disable Property Map
    Disable SSL.
    verifyFull Property Map
    Verify-full SSL mode.

    DestinationRedisConfigurationSslModeVerifyFull, DestinationRedisConfigurationSslModeVerifyFullArgs

    CaCertificate string
    CA certificate
    ClientCertificate string
    Client certificate
    ClientKey string
    Client key
    ClientKeyPassword string
    Password for keystorage. If you do not add it - the password will be generated automatically.
    CaCertificate string
    CA certificate
    ClientCertificate string
    Client certificate
    ClientKey string
    Client key
    ClientKeyPassword string
    Password for keystorage. If you do not add it - the password will be generated automatically.
    caCertificate String
    CA certificate
    clientCertificate String
    Client certificate
    clientKey String
    Client key
    clientKeyPassword String
    Password for keystorage. If you do not add it - the password will be generated automatically.
    caCertificate string
    CA certificate
    clientCertificate string
    Client certificate
    clientKey string
    Client key
    clientKeyPassword string
    Password for keystorage. If you do not add it - the password will be generated automatically.
    ca_certificate str
    CA certificate
    client_certificate str
    Client certificate
    client_key str
    Client key
    client_key_password str
    Password for keystorage. If you do not add it - the password will be generated automatically.
    caCertificate String
    CA certificate
    clientCertificate String
    Client certificate
    clientKey String
    Client key
    clientKeyPassword String
    Password for keystorage. If you do not add it - the password will be generated automatically.

    DestinationRedisConfigurationTunnelMethod, DestinationRedisConfigurationTunnelMethodArgs

    DestinationRedisConfigurationTunnelMethodPasswordAuthentication, DestinationRedisConfigurationTunnelMethodPasswordAuthenticationArgs

    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host
    TunnelUserPassword string
    OS-level password for logging into the jump server host
    TunnelPort double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host
    TunnelUserPassword string
    OS-level password for logging into the jump server host
    TunnelPort float64
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host
    tunnelUserPassword String
    OS-level password for logging into the jump server host
    tunnelPort Double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    tunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser string
    OS-level username for logging into the jump server host
    tunnelUserPassword string
    OS-level password for logging into the jump server host
    tunnelPort number
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    tunnel_host str
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnel_user str
    OS-level username for logging into the jump server host
    tunnel_user_password str
    OS-level password for logging into the jump server host
    tunnel_port float
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host
    tunnelUserPassword String
    OS-level password for logging into the jump server host
    tunnelPort Number
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22

    DestinationRedisConfigurationTunnelMethodSshKeyAuthentication, DestinationRedisConfigurationTunnelMethodSshKeyAuthenticationArgs

    SshKey string
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host.
    TunnelPort double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    SshKey string
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host.
    TunnelPort float64
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    sshKey String
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host.
    tunnelPort Double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    sshKey string
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser string
    OS-level username for logging into the jump server host.
    tunnelPort number
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    ssh_key str
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnel_host str
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnel_user str
    OS-level username for logging into the jump server host.
    tunnel_port float
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    sshKey String
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host.
    tunnelPort Number
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22

    DestinationRedisResourceAllocation, DestinationRedisResourceAllocationArgs

    Default DestinationRedisResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics List<DestinationRedisResourceAllocationJobSpecific>
    Default DestinationRedisResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics []DestinationRedisResourceAllocationJobSpecific
    default_ DestinationRedisResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<DestinationRedisResourceAllocationJobSpecific>
    default DestinationRedisResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics DestinationRedisResourceAllocationJobSpecific[]
    default DestinationRedisResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    job_specifics Sequence[DestinationRedisResourceAllocationJobSpecific]
    default Property Map
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<Property Map>

    DestinationRedisResourceAllocationDefault, DestinationRedisResourceAllocationDefaultArgs

    DestinationRedisResourceAllocationJobSpecific, DestinationRedisResourceAllocationJobSpecificArgs

    JobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    ResourceRequirements DestinationRedisResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    JobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    ResourceRequirements DestinationRedisResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements DestinationRedisResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements DestinationRedisResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    job_type str
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resource_requirements DestinationRedisResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations)

    DestinationRedisResourceAllocationJobSpecificResourceRequirements, DestinationRedisResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/destinationRedis:DestinationRedis my_airbyte_destination_redis ""
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq