airbyte.DestinationTeradata
Explore with Pulumi AI
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
Destination
Teradata Configuration - Workspace
Id string - Definition
Id 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
Destination
Teradata Configuration Args - Workspace
Id string - Definition
Id 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
Destination
Teradata Configuration - workspace
Id String - definition
Id 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
Destination
Teradata Configuration - workspace
Id string - definition
Id 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
Destination
Teradata Configuration Args - 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
- workspace
Id String - definition
Id 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:
- Created
At double - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationTeradata Resource Allocation - 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 float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationTeradata Resource Allocation - 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 Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationTeradata Resource Allocation - 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 number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationTeradata Resource Allocation - 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 DestinationTeradata Resource Allocation - 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 Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation 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.
- Configuration
Destination
Teradata Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationTeradata Resource Allocation - 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 string
- Configuration
Destination
Teradata Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationTeradata Resource Allocation Args - 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 string
- configuration
Destination
Teradata Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationTeradata Resource Allocation - 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 String
- configuration
Destination
Teradata Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationTeradata Resource Allocation - 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 string
- configuration
Destination
Teradata Configuration Args - 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 DestinationTeradata Resource Allocation Args - 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
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation 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.
- workspace
Id String
Supporting Types
DestinationTeradataConfiguration, DestinationTeradataConfigurationArgs
- Host string
- Hostname of the database.
- Jdbc
Url stringParams - 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
Destination
Teradata Configuration Logmech - Query
Band 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
- Ssl
Mode DestinationTeradata Configuration Ssl Mode - 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.
- Jdbc
Url stringParams - 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
Destination
Teradata Configuration Logmech - Query
Band 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
- Ssl
Mode DestinationTeradata Configuration Ssl Mode - 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.
- jdbc
Url StringParams - 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
Destination
Teradata Configuration Logmech - query
Band 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
- ssl
Mode DestinationTeradata Configuration Ssl Mode - 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.
- jdbc
Url stringParams - 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
Destination
Teradata Configuration Logmech - query
Band 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
- ssl
Mode DestinationTeradata Configuration Ssl Mode - 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_ strparams - 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
Destination
Teradata Configuration Logmech - 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 DestinationTeradata Configuration Ssl Mode - 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.
- jdbc
Url StringParams - 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
- query
Band 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
- ssl
Mode 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
DestinationTeradataConfigurationLogmechTd2, DestinationTeradataConfigurationLogmechTd2Args
DestinationTeradataConfigurationSslMode, DestinationTeradataConfigurationSslModeArgs
- Allow
Destination
Teradata Configuration Ssl Mode Allow - Allow SSL mode.
- Disable
Destination
Teradata Configuration Ssl Mode Disable - Disable SSL.
- Prefer
Destination
Teradata Configuration Ssl Mode Prefer - Prefer SSL mode.
- Require
Destination
Teradata Configuration Ssl Mode Require - Require SSL mode.
- Verify
Ca DestinationTeradata Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- Verify
Full DestinationTeradata Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- Allow
Destination
Teradata Configuration Ssl Mode Allow - Allow SSL mode.
- Disable
Destination
Teradata Configuration Ssl Mode Disable - Disable SSL.
- Prefer
Destination
Teradata Configuration Ssl Mode Prefer - Prefer SSL mode.
- Require
Destination
Teradata Configuration Ssl Mode Require - Require SSL mode.
- Verify
Ca DestinationTeradata Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- Verify
Full DestinationTeradata Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow
Destination
Teradata Configuration Ssl Mode Allow - Allow SSL mode.
- disable
Destination
Teradata Configuration Ssl Mode Disable - Disable SSL.
- prefer
Destination
Teradata Configuration Ssl Mode Prefer - Prefer SSL mode.
- require
Destination
Teradata Configuration Ssl Mode Require - Require SSL mode.
- verify
Ca DestinationTeradata Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- verify
Full DestinationTeradata Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow
Destination
Teradata Configuration Ssl Mode Allow - Allow SSL mode.
- disable
Destination
Teradata Configuration Ssl Mode Disable - Disable SSL.
- prefer
Destination
Teradata Configuration Ssl Mode Prefer - Prefer SSL mode.
- require
Destination
Teradata Configuration Ssl Mode Require - Require SSL mode.
- verify
Ca DestinationTeradata Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- verify
Full DestinationTeradata Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow
Destination
Teradata Configuration Ssl Mode Allow - Allow SSL mode.
- disable
Destination
Teradata Configuration Ssl Mode Disable - Disable SSL.
- prefer
Destination
Teradata Configuration Ssl Mode Prefer - Prefer SSL mode.
- require
Destination
Teradata Configuration Ssl Mode Require - Require SSL mode.
- verify_
ca DestinationTeradata Configuration Ssl Mode Verify Ca - Verify-ca SSL mode.
- verify_
full DestinationTeradata Configuration Ssl Mode Verify Full - Verify-full SSL mode.
- allow Property Map
- Allow SSL mode.
- disable Property Map
- Disable SSL.
- prefer Property Map
- Prefer SSL mode.
- require Property Map
- Require SSL mode.
- verify
Ca Property Map - Verify-ca SSL mode.
- verify
Full Property Map - Verify-full SSL mode.
DestinationTeradataConfigurationSslModeVerifyCa, DestinationTeradataConfigurationSslModeVerifyCaArgs
- Ssl
Ca stringCertificate - 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 stringCertificate - 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 StringCertificate - 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 stringCertificate - 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_ strcertificate - 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 StringCertificate - 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
- Ssl
Ca stringCertificate - 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 stringCertificate - 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 StringCertificate - 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 stringCertificate - 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_ strcertificate - 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 StringCertificate - 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
Destination
Teradata Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationTeradata Resource Allocation Job Specific>
- Default
Destination
Teradata Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationTeradata Resource Allocation Job Specific
- default_
Destination
Teradata Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationTeradata Resource Allocation Job Specific>
- default
Destination
Teradata Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationTeradata Resource Allocation Job Specific[]
- default
Destination
Teradata Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationTeradata Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationTeradataResourceAllocationDefault, DestinationTeradataResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
DestinationTeradataResourceAllocationJobSpecific, DestinationTeradataResourceAllocationJobSpecificArgs
- Job
Type 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"]
- Resource
Requirements DestinationTeradata Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type 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"]
- Resource
Requirements DestinationTeradata Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type 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"]
- resource
Requirements DestinationTeradata Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type 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"]
- resource
Requirements DestinationTeradata Resource Allocation Job Specific Resource Requirements - 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 DestinationTeradata Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type 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"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
DestinationTeradataResourceAllocationJobSpecificResourceRequirements, DestinationTeradataResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
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.