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

airbyte.DestinationTeradata

Explore with Pulumi AI

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

    DestinationTeradata Resource

    Create DestinationTeradata Resource

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

    Constructor syntax

    new DestinationTeradata(name: string, args: DestinationTeradataArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationTeradata(resource_name: str,
                            args: DestinationTeradataArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationTeradata(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            configuration: Optional[DestinationTeradataConfigurationArgs] = None,
                            workspace_id: Optional[str] = None,
                            definition_id: Optional[str] = None,
                            name: Optional[str] = None)
    func NewDestinationTeradata(ctx *Context, name string, args DestinationTeradataArgs, opts ...ResourceOption) (*DestinationTeradata, error)
    public DestinationTeradata(string name, DestinationTeradataArgs args, CustomResourceOptions? opts = null)
    public DestinationTeradata(String name, DestinationTeradataArgs args)
    public DestinationTeradata(String name, DestinationTeradataArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationTeradata
    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 DestinationTeradataArgs
    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 DestinationTeradataArgs
    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 DestinationTeradataArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationTeradataArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationTeradataArgs
    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 destinationTeradataResource = new Airbyte.DestinationTeradata("destinationTeradataResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationTeradataConfigurationArgs
        {
            Host = "string",
            JdbcUrlParams = "string",
            Logmech = new Airbyte.Inputs.DestinationTeradataConfigurationLogmechArgs
            {
                Ldap = new Airbyte.Inputs.DestinationTeradataConfigurationLogmechLdapArgs
                {
                    Password = "string",
                    Username = "string",
                },
                Td2 = new Airbyte.Inputs.DestinationTeradataConfigurationLogmechTd2Args
                {
                    Password = "string",
                    Username = "string",
                },
            },
            QueryBand = "string",
            Schema = "string",
            Ssl = false,
            SslMode = new Airbyte.Inputs.DestinationTeradataConfigurationSslModeArgs
            {
                Allow = null,
                Disable = null,
                Prefer = null,
                Require = null,
                VerifyCa = new Airbyte.Inputs.DestinationTeradataConfigurationSslModeVerifyCaArgs
                {
                    SslCaCertificate = "string",
                },
                VerifyFull = new Airbyte.Inputs.DestinationTeradataConfigurationSslModeVerifyFullArgs
                {
                    SslCaCertificate = "string",
                },
            },
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationTeradata(ctx, "destinationTeradataResource", &airbyte.DestinationTeradataArgs{
    Configuration: &.DestinationTeradataConfigurationArgs{
    Host: pulumi.String("string"),
    JdbcUrlParams: pulumi.String("string"),
    Logmech: &.DestinationTeradataConfigurationLogmechArgs{
    Ldap: &.DestinationTeradataConfigurationLogmechLdapArgs{
    Password: pulumi.String("string"),
    Username: pulumi.String("string"),
    },
    Td2: &.DestinationTeradataConfigurationLogmechTd2Args{
    Password: pulumi.String("string"),
    Username: pulumi.String("string"),
    },
    },
    QueryBand: pulumi.String("string"),
    Schema: pulumi.String("string"),
    Ssl: pulumi.Bool(false),
    SslMode: &.DestinationTeradataConfigurationSslModeArgs{
    Allow: &.DestinationTeradataConfigurationSslModeAllowArgs{
    },
    Disable: &.DestinationTeradataConfigurationSslModeDisableArgs{
    },
    Prefer: &.DestinationTeradataConfigurationSslModePreferArgs{
    },
    Require: &.DestinationTeradataConfigurationSslModeRequireArgs{
    },
    VerifyCa: &.DestinationTeradataConfigurationSslModeVerifyCaArgs{
    SslCaCertificate: pulumi.String("string"),
    },
    VerifyFull: &.DestinationTeradataConfigurationSslModeVerifyFullArgs{
    SslCaCertificate: pulumi.String("string"),
    },
    },
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationTeradataResource = new DestinationTeradata("destinationTeradataResource", DestinationTeradataArgs.builder()
        .configuration(DestinationTeradataConfigurationArgs.builder()
            .host("string")
            .jdbcUrlParams("string")
            .logmech(DestinationTeradataConfigurationLogmechArgs.builder()
                .ldap(DestinationTeradataConfigurationLogmechLdapArgs.builder()
                    .password("string")
                    .username("string")
                    .build())
                .td2(DestinationTeradataConfigurationLogmechTd2Args.builder()
                    .password("string")
                    .username("string")
                    .build())
                .build())
            .queryBand("string")
            .schema("string")
            .ssl(false)
            .sslMode(DestinationTeradataConfigurationSslModeArgs.builder()
                .allow()
                .disable()
                .prefer()
                .require()
                .verifyCa(DestinationTeradataConfigurationSslModeVerifyCaArgs.builder()
                    .sslCaCertificate("string")
                    .build())
                .verifyFull(DestinationTeradataConfigurationSslModeVerifyFullArgs.builder()
                    .sslCaCertificate("string")
                    .build())
                .build())
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_teradata_resource = airbyte.DestinationTeradata("destinationTeradataResource",
        configuration={
            "host": "string",
            "jdbc_url_params": "string",
            "logmech": {
                "ldap": {
                    "password": "string",
                    "username": "string",
                },
                "td2": {
                    "password": "string",
                    "username": "string",
                },
            },
            "query_band": "string",
            "schema": "string",
            "ssl": False,
            "ssl_mode": {
                "allow": {},
                "disable": {},
                "prefer": {},
                "require": {},
                "verify_ca": {
                    "ssl_ca_certificate": "string",
                },
                "verify_full": {
                    "ssl_ca_certificate": "string",
                },
            },
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationTeradataResource = new airbyte.DestinationTeradata("destinationTeradataResource", {
        configuration: {
            host: "string",
            jdbcUrlParams: "string",
            logmech: {
                ldap: {
                    password: "string",
                    username: "string",
                },
                td2: {
                    password: "string",
                    username: "string",
                },
            },
            queryBand: "string",
            schema: "string",
            ssl: false,
            sslMode: {
                allow: {},
                disable: {},
                prefer: {},
                require: {},
                verifyCa: {
                    sslCaCertificate: "string",
                },
                verifyFull: {
                    sslCaCertificate: "string",
                },
            },
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationTeradata
    properties:
        configuration:
            host: string
            jdbcUrlParams: string
            logmech:
                ldap:
                    password: string
                    username: string
                td2:
                    password: string
                    username: string
            queryBand: string
            schema: string
            ssl: false
            sslMode:
                allow: {}
                disable: {}
                prefer: {}
                require: {}
                verifyCa:
                    sslCaCertificate: string
                verifyFull:
                    sslCaCertificate: string
        definitionId: string
        name: string
        workspaceId: string
    

    DestinationTeradata 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 DestinationTeradata resource accepts the following input properties:

    Configuration DestinationTeradataConfiguration
    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 DestinationTeradataConfigurationArgs
    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 DestinationTeradataConfiguration
    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 DestinationTeradataConfiguration
    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 DestinationTeradataConfigurationArgs
    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 DestinationTeradata resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationTeradataResourceAllocation
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradata Resource

    Get an existing DestinationTeradata 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?: DestinationTeradataState, opts?: CustomResourceOptions): DestinationTeradata
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationTeradataConfigurationArgs] = 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[DestinationTeradataResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> DestinationTeradata
    func GetDestinationTeradata(ctx *Context, name string, id IDInput, state *DestinationTeradataState, opts ...ResourceOption) (*DestinationTeradata, error)
    public static DestinationTeradata Get(string name, Input<string> id, DestinationTeradataState? state, CustomResourceOptions? opts = null)
    public static DestinationTeradata get(String name, Output<String> id, DestinationTeradataState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationTeradata    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 DestinationTeradataConfiguration
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradataConfigurationArgs
    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 DestinationTeradataResourceAllocationArgs
    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 DestinationTeradataConfiguration
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradataConfiguration
    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 DestinationTeradataResourceAllocation
    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 DestinationTeradataConfigurationArgs
    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 DestinationTeradataResourceAllocationArgs
    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

    DestinationTeradataConfiguration, DestinationTeradataConfigurationArgs

    Host string
    Hostname of the database.
    JdbcUrlParams string
    Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
    Logmech DestinationTeradataConfigurationLogmech
    QueryBand string
    Defines the custom session query band using name-value pairs. For example, 'org=Finance;report=Fin123;'
    Schema string
    The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "airbyte_td"
    Ssl bool
    Encrypt data using SSL. When activating SSL, please select one of the SSL modes. Default: false
    SslMode DestinationTeradataConfigurationSslMode
    SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the destination database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the destination database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server See more information - \n\n in the docs\n\n.
    Host string
    Hostname of the database.
    JdbcUrlParams string
    Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
    Logmech DestinationTeradataConfigurationLogmech
    QueryBand string
    Defines the custom session query band using name-value pairs. For example, 'org=Finance;report=Fin123;'
    Schema string
    The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "airbyte_td"
    Ssl bool
    Encrypt data using SSL. When activating SSL, please select one of the SSL modes. Default: false
    SslMode DestinationTeradataConfigurationSslMode
    SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the destination database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the destination database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server See more information - \n\n in the docs\n\n.
    host String
    Hostname of the database.
    jdbcUrlParams String
    Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
    logmech DestinationTeradataConfigurationLogmech
    queryBand String
    Defines the custom session query band using name-value pairs. For example, 'org=Finance;report=Fin123;'
    schema String
    The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "airbyte_td"
    ssl Boolean
    Encrypt data using SSL. When activating SSL, please select one of the SSL modes. Default: false
    sslMode DestinationTeradataConfigurationSslMode
    SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the destination database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the destination database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server See more information - \n\n in the docs\n\n.
    host string
    Hostname of the database.
    jdbcUrlParams string
    Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
    logmech DestinationTeradataConfigurationLogmech
    queryBand string
    Defines the custom session query band using name-value pairs. For example, 'org=Finance;report=Fin123;'
    schema string
    The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "airbyte_td"
    ssl boolean
    Encrypt data using SSL. When activating SSL, please select one of the SSL modes. Default: false
    sslMode DestinationTeradataConfigurationSslMode
    SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the destination database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the destination database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server See more information - \n\n in the docs\n\n.
    host str
    Hostname of the database.
    jdbc_url_params str
    Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
    logmech DestinationTeradataConfigurationLogmech
    query_band str
    Defines the custom session query band using name-value pairs. For example, 'org=Finance;report=Fin123;'
    schema str
    The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "airbyte_td"
    ssl bool
    Encrypt data using SSL. When activating SSL, please select one of the SSL modes. Default: false
    ssl_mode DestinationTeradataConfigurationSslMode
    SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the destination database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the destination database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server See more information - \n\n in the docs\n\n.
    host String
    Hostname of the database.
    jdbcUrlParams String
    Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
    logmech Property Map
    queryBand String
    Defines the custom session query band using name-value pairs. For example, 'org=Finance;report=Fin123;'
    schema String
    The default schema tables are written to if the source does not specify a namespace. The usual value for this field is "public". Default: "airbyte_td"
    ssl Boolean
    Encrypt data using SSL. When activating SSL, please select one of the SSL modes. Default: false
    sslMode Property Map
    SSL connection modes. \n\ndisable\n\n - Chose this mode to disable encryption of communication between Airbyte and destination database \n\nallow\n\n - Chose this mode to enable encryption only when required by the destination database \n\nprefer\n\n - Chose this mode to allow unencrypted connection only if the destination database does not support encryption \n\nrequire\n\n - Chose this mode to always require encryption. If the destination database server does not support encryption, connection will fail \n\nverify-ca\n\n - Chose this mode to always require encryption and to verify that the destination database server has a valid SSL certificate \n\nverify-full\n\n - This is the most secure mode. Chose this mode to always require encryption and to verify the identity of the destination database server See more information - \n\n in the docs\n\n.

    DestinationTeradataConfigurationLogmech, DestinationTeradataConfigurationLogmechArgs

    DestinationTeradataConfigurationLogmechLdap, DestinationTeradataConfigurationLogmechLdapArgs

    Password string
    Enter the password associated with the username.
    Username string
    Username to use to access the database.
    Password string
    Enter the password associated with the username.
    Username string
    Username to use to access the database.
    password String
    Enter the password associated with the username.
    username String
    Username to use to access the database.
    password string
    Enter the password associated with the username.
    username string
    Username to use to access the database.
    password str
    Enter the password associated with the username.
    username str
    Username to use to access the database.
    password String
    Enter the password associated with the username.
    username String
    Username to use to access the database.

    DestinationTeradataConfigurationLogmechTd2, DestinationTeradataConfigurationLogmechTd2Args

    Password string
    Enter the password associated with the username.
    Username string
    Username to use to access the database.
    Password string
    Enter the password associated with the username.
    Username string
    Username to use to access the database.
    password String
    Enter the password associated with the username.
    username String
    Username to use to access the database.
    password string
    Enter the password associated with the username.
    username string
    Username to use to access the database.
    password str
    Enter the password associated with the username.
    username str
    Username to use to access the database.
    password String
    Enter the password associated with the username.
    username String
    Username to use to access the database.

    DestinationTeradataConfigurationSslMode, DestinationTeradataConfigurationSslModeArgs

    allow Property Map
    Allow SSL mode.
    disable Property Map
    Disable SSL.
    prefer Property Map
    Prefer SSL mode.
    require Property Map
    Require SSL mode.
    verifyCa Property Map
    Verify-ca SSL mode.
    verifyFull Property Map
    Verify-full SSL mode.

    DestinationTeradataConfigurationSslModeVerifyCa, DestinationTeradataConfigurationSslModeVerifyCaArgs

    SslCaCertificate string
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca. See more information - \n\n in the docs\n\n.
    SslCaCertificate string
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca. See more information - \n\n in the docs\n\n.
    sslCaCertificate String
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca. See more information - \n\n in the docs\n\n.
    sslCaCertificate string
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca. See more information - \n\n in the docs\n\n.
    ssl_ca_certificate str
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca. See more information - \n\n in the docs\n\n.
    sslCaCertificate String
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-ca. See more information - \n\n in the docs\n\n.

    DestinationTeradataConfigurationSslModeVerifyFull, DestinationTeradataConfigurationSslModeVerifyFullArgs

    SslCaCertificate string
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full. See more information - \n\n in the docs\n\n.
    SslCaCertificate string
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full. See more information - \n\n in the docs\n\n.
    sslCaCertificate String
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full. See more information - \n\n in the docs\n\n.
    sslCaCertificate string
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full. See more information - \n\n in the docs\n\n.
    ssl_ca_certificate str
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full. See more information - \n\n in the docs\n\n.
    sslCaCertificate String
    Specifies the file name of a PEM file that contains Certificate Authority (CA) certificates for use with SSLMODE=verify-full. See more information - \n\n in the docs\n\n.

    DestinationTeradataResourceAllocation, DestinationTeradataResourceAllocationArgs

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

    DestinationTeradataResourceAllocationDefault, DestinationTeradataResourceAllocationDefaultArgs

    DestinationTeradataResourceAllocationJobSpecific, DestinationTeradataResourceAllocationJobSpecificArgs

    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 DestinationTeradataResourceAllocationJobSpecificResourceRequirements
    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 DestinationTeradataResourceAllocationJobSpecificResourceRequirements
    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 DestinationTeradataResourceAllocationJobSpecificResourceRequirements
    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 DestinationTeradataResourceAllocationJobSpecificResourceRequirements
    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 DestinationTeradataResourceAllocationJobSpecificResourceRequirements
    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)

    DestinationTeradataResourceAllocationJobSpecificResourceRequirements, DestinationTeradataResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/destinationTeradata:DestinationTeradata my_airbyte_destination_teradata ""
    

    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