1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationTeradata
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.DestinationTeradata

Explore with Pulumi AI

DestinationTeradata 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.DestinationTeradata;
import com.pulumi.airbyte.DestinationTeradataArgs;
import com.pulumi.airbyte.inputs.DestinationTeradataConfigurationArgs;
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 myDestinationTeradata = new DestinationTeradata("myDestinationTeradata", DestinationTeradataArgs.builder()
            .configuration(DestinationTeradataConfigurationArgs.builder()
                .host("...my_host...")
                .jdbc_url_params("...my_jdbc_url_params...")
                .password("...my_password...")
                .schema("airbyte_td")
                .ssl(false)
                .ssl_mode(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .username("...my_username...")
                .build())
            .definitionId("d113370e-613a-4d8a-8685-e4d05d32dcea")
            .workspaceId("a9f65ee8-669c-48fd-aadc-bf3b835fc521")
            .build());

    }
}
Copy
resources:
  myDestinationTeradata:
    type: airbyte:DestinationTeradata
    properties:
      configuration:
        host: '...my_host...'
        jdbc_url_params: '...my_jdbc_url_params...'
        password: '...my_password...'
        schema: airbyte_td
        ssl: false
        ssl_mode:
          allow: {}
          disable: {}
          prefer: {}
          require: {}
          verifyCa:
            sslCaCertificate: '...my_ssl_ca_certificate...'
          verifyFull:
            sslCaCertificate: '...my_ssl_ca_certificate...'
        username: '...my_username...'
      definitionId: d113370e-613a-4d8a-8685-e4d05d32dcea
      workspaceId: a9f65ee8-669c-48fd-aadc-bf3b835fc521
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. DestinationTeradataArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. DestinationTeradataArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationTeradataArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
        Username = "string",
        JdbcUrlParams = "string",
        Password = "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",
});
Copy
example, err := airbyte.NewDestinationTeradata(ctx, "destinationTeradataResource", &airbyte.DestinationTeradataArgs{
Configuration: &.DestinationTeradataConfigurationArgs{
Host: pulumi.String("string"),
Username: pulumi.String("string"),
JdbcUrlParams: pulumi.String("string"),
Password: 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"),
})
Copy
var destinationTeradataResource = new DestinationTeradata("destinationTeradataResource", DestinationTeradataArgs.builder()
    .configuration(DestinationTeradataConfigurationArgs.builder()
        .host("string")
        .username("string")
        .jdbcUrlParams("string")
        .password("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());
Copy
destination_teradata_resource = airbyte.DestinationTeradata("destinationTeradataResource",
    configuration={
        "host": "string",
        "username": "string",
        "jdbc_url_params": "string",
        "password": "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")
Copy
const destinationTeradataResource = new airbyte.DestinationTeradata("destinationTeradataResource", {
    configuration: {
        host: "string",
        username: "string",
        jdbcUrlParams: "string",
        password: "string",
        schema: "string",
        ssl: false,
        sslMode: {
            allow: {},
            disable: {},
            prefer: {},
            require: {},
            verifyCa: {
                sslCaCertificate: "string",
            },
            verifyFull: {
                sslCaCertificate: "string",
            },
        },
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
});
Copy
type: airbyte:DestinationTeradata
properties:
    configuration:
        host: string
        jdbcUrlParams: string
        password: string
        schema: string
        ssl: false
        sslMode:
            allow: {}
            disable: {}
            prefer: {}
            require: {}
            verifyCa:
                sslCaCertificate: string
            verifyFull:
                sslCaCertificate: string
        username: string
    definitionId: string
    name: string
    workspaceId: string
Copy

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 This property is required. DestinationTeradataConfiguration
WorkspaceId This property is required. 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 This property is required. DestinationTeradataConfigurationArgs
WorkspaceId This property is required. 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 This property is required. DestinationTeradataConfiguration
workspaceId This property is required. 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 This property is required. DestinationTeradataConfiguration
workspaceId This property is required. 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 This property is required. DestinationTeradataConfigurationArgs
workspace_id This property is required. 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 This property is required. Property Map
workspaceId This property is required. 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.
CreatedAt float64
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
createdAt Double
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
createdAt number
destinationId string
destinationType string
id string
The provider-assigned unique ID for this managed resource.
created_at float
destination_id str
destination_type str
id str
The provider-assigned unique ID for this managed resource.
createdAt Number
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.

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,
        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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
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.
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.
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.
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.
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.
workspaceId String

Supporting Types

DestinationTeradataConfiguration
, DestinationTeradataConfigurationArgs

Host This property is required. string
Hostname of the database.
Username This property is required. string
Username to use to access 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).
Password string
Password associated with the username.
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 connection 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 This property is required. string
Hostname of the database.
Username This property is required. string
Username to use to access 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).
Password string
Password associated with the username.
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 connection 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 This property is required. String
Hostname of the database.
username This property is required. String
Username to use to access 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).
password String
Password associated with the username.
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 connection 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 This property is required. string
Hostname of the database.
username This property is required. string
Username to use to access 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).
password string
Password associated with the username.
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 connection 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 This property is required. str
Hostname of the database.
username This property is required. str
Username to use to access 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).
password str
Password associated with the username.
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 connection 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 This property is required. String
Hostname of the database.
username This property is required. String
Username to use to access 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).
password String
Password associated with the username.
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 connection 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.

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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.

Import

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

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.