DestinationClickhouse Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";
const myDestinationClickhouse = new airbyte.DestinationClickhouse("my_destination_clickhouse", {
configuration: {
additionalProperties: "{ \"see\": \"documentation\" }",
database: "...my_database...",
enableJson: true,
host: "...my_host...",
password: "...my_password...",
port: "...my_port...",
protocol: "https",
recordWindowSize: 4,
tunnelMethod: {
noTunnel: {
additionalProperties: "{ \"see\": \"documentation\" }",
tunnelMethod: "NO_TUNNEL",
},
},
username: "...my_username...",
},
definitionId: "f7e79763-e821-47f1-9f09-071b66436a92",
name: "...my_name...",
workspaceId: "18cdd7db-9638-49f4-915d-c14e35de40fa",
});
import pulumi
import pulumi_airbyte as airbyte
my_destination_clickhouse = airbyte.DestinationClickhouse("my_destination_clickhouse",
configuration={
"additional_properties": "{ \"see\": \"documentation\" }",
"database": "...my_database...",
"enable_json": True,
"host": "...my_host...",
"password": "...my_password...",
"port": "...my_port...",
"protocol": "https",
"record_window_size": 4,
"tunnel_method": {
"no_tunnel": {
"additional_properties": "{ \"see\": \"documentation\" }",
"tunnel_method": "NO_TUNNEL",
},
},
"username": "...my_username...",
},
definition_id="f7e79763-e821-47f1-9f09-071b66436a92",
name="...my_name...",
workspace_id="18cdd7db-9638-49f4-915d-c14e35de40fa")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := airbyte.NewDestinationClickhouse(ctx, "my_destination_clickhouse", &airbyte.DestinationClickhouseArgs{
Configuration: &airbyte.DestinationClickhouseConfigurationArgs{
AdditionalProperties: pulumi.String("{ \"see\": \"documentation\" }"),
Database: pulumi.String("...my_database..."),
EnableJson: pulumi.Bool(true),
Host: pulumi.String("...my_host..."),
Password: pulumi.String("...my_password..."),
Port: pulumi.String("...my_port..."),
Protocol: pulumi.String("https"),
RecordWindowSize: pulumi.Float64(4),
TunnelMethod: &airbyte.DestinationClickhouseConfigurationTunnelMethodArgs{
NoTunnel: &airbyte.DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs{
AdditionalProperties: pulumi.String("{ \"see\": \"documentation\" }"),
TunnelMethod: pulumi.String("NO_TUNNEL"),
},
},
Username: pulumi.String("...my_username..."),
},
DefinitionId: pulumi.String("f7e79763-e821-47f1-9f09-071b66436a92"),
Name: pulumi.String("...my_name..."),
WorkspaceId: pulumi.String("18cdd7db-9638-49f4-915d-c14e35de40fa"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;
return await Deployment.RunAsync(() =>
{
var myDestinationClickhouse = new Airbyte.DestinationClickhouse("my_destination_clickhouse", new()
{
Configuration = new Airbyte.Inputs.DestinationClickhouseConfigurationArgs
{
AdditionalProperties = "{ \"see\": \"documentation\" }",
Database = "...my_database...",
EnableJson = true,
Host = "...my_host...",
Password = "...my_password...",
Port = "...my_port...",
Protocol = "https",
RecordWindowSize = 4,
TunnelMethod = new Airbyte.Inputs.DestinationClickhouseConfigurationTunnelMethodArgs
{
NoTunnel = new Airbyte.Inputs.DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs
{
AdditionalProperties = "{ \"see\": \"documentation\" }",
TunnelMethod = "NO_TUNNEL",
},
},
Username = "...my_username...",
},
DefinitionId = "f7e79763-e821-47f1-9f09-071b66436a92",
Name = "...my_name...",
WorkspaceId = "18cdd7db-9638-49f4-915d-c14e35de40fa",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.DestinationClickhouse;
import com.pulumi.airbyte.DestinationClickhouseArgs;
import com.pulumi.airbyte.inputs.DestinationClickhouseConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationClickhouseConfigurationTunnelMethodArgs;
import com.pulumi.airbyte.inputs.DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs;
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 myDestinationClickhouse = new DestinationClickhouse("myDestinationClickhouse", DestinationClickhouseArgs.builder()
.configuration(DestinationClickhouseConfigurationArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.database("...my_database...")
.enableJson(true)
.host("...my_host...")
.password("...my_password...")
.port("...my_port...")
.protocol("https")
.recordWindowSize(4.0)
.tunnelMethod(DestinationClickhouseConfigurationTunnelMethodArgs.builder()
.noTunnel(DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.tunnelMethod("NO_TUNNEL")
.build())
.build())
.username("...my_username...")
.build())
.definitionId("f7e79763-e821-47f1-9f09-071b66436a92")
.name("...my_name...")
.workspaceId("18cdd7db-9638-49f4-915d-c14e35de40fa")
.build());
}
}
resources:
myDestinationClickhouse:
type: airbyte:DestinationClickhouse
name: my_destination_clickhouse
properties:
configuration:
additionalProperties: '{ "see": "documentation" }'
database: '...my_database...'
enableJson: true
host: '...my_host...'
password: '...my_password...'
port: '...my_port...'
protocol: https
recordWindowSize: 4
tunnelMethod:
noTunnel:
additionalProperties: '{ "see": "documentation" }'
tunnelMethod: NO_TUNNEL
username: '...my_username...'
definitionId: f7e79763-e821-47f1-9f09-071b66436a92
name: '...my_name...'
workspaceId: 18cdd7db-9638-49f4-915d-c14e35de40fa
Create DestinationClickhouse Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationClickhouse(name: string, args: DestinationClickhouseArgs, opts?: CustomResourceOptions);@overload
def DestinationClickhouse(resource_name: str,
args: DestinationClickhouseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationClickhouse(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationClickhouseConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)func NewDestinationClickhouse(ctx *Context, name string, args DestinationClickhouseArgs, opts ...ResourceOption) (*DestinationClickhouse, error)public DestinationClickhouse(string name, DestinationClickhouseArgs args, CustomResourceOptions? opts = null)
public DestinationClickhouse(String name, DestinationClickhouseArgs args)
public DestinationClickhouse(String name, DestinationClickhouseArgs args, CustomResourceOptions options)
type: airbyte:DestinationClickhouse
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 DestinationClickhouseArgs
- 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 DestinationClickhouseArgs
- 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 DestinationClickhouseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationClickhouseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationClickhouseArgs
- 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 destinationClickhouseResource = new Airbyte.DestinationClickhouse("destinationClickhouseResource", new()
{
Configuration = new Airbyte.Inputs.DestinationClickhouseConfigurationArgs
{
Host = "string",
Password = "string",
Protocol = "string",
AdditionalProperties = "string",
Database = "string",
EnableJson = false,
Port = "string",
RecordWindowSize = 0,
TunnelMethod = new Airbyte.Inputs.DestinationClickhouseConfigurationTunnelMethodArgs
{
NoTunnel = new Airbyte.Inputs.DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs
{
AdditionalProperties = "string",
TunnelMethod = "string",
},
PasswordAuthentication = new Airbyte.Inputs.DestinationClickhouseConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
AdditionalProperties = "string",
TunnelMethod = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.DestinationClickhouseConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
AdditionalProperties = "string",
TunnelMethod = "string",
TunnelPort = 0,
},
},
Username = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationClickhouse(ctx, "destinationClickhouseResource", &airbyte.DestinationClickhouseArgs{
Configuration: &airbyte.DestinationClickhouseConfigurationArgs{
Host: pulumi.String("string"),
Password: pulumi.String("string"),
Protocol: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Database: pulumi.String("string"),
EnableJson: pulumi.Bool(false),
Port: pulumi.String("string"),
RecordWindowSize: pulumi.Float64(0),
TunnelMethod: &airbyte.DestinationClickhouseConfigurationTunnelMethodArgs{
NoTunnel: &airbyte.DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs{
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
},
PasswordAuthentication: &airbyte.DestinationClickhouseConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &airbyte.DestinationClickhouseConfigurationTunnelMethodSshKeyAuthenticationArgs{
SshKey: pulumi.String("string"),
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
},
Username: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var destinationClickhouseResource = new DestinationClickhouse("destinationClickhouseResource", DestinationClickhouseArgs.builder()
.configuration(DestinationClickhouseConfigurationArgs.builder()
.host("string")
.password("string")
.protocol("string")
.additionalProperties("string")
.database("string")
.enableJson(false)
.port("string")
.recordWindowSize(0.0)
.tunnelMethod(DestinationClickhouseConfigurationTunnelMethodArgs.builder()
.noTunnel(DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs.builder()
.additionalProperties("string")
.tunnelMethod("string")
.build())
.passwordAuthentication(DestinationClickhouseConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.additionalProperties("string")
.tunnelMethod("string")
.tunnelPort(0.0)
.build())
.sshKeyAuthentication(DestinationClickhouseConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.additionalProperties("string")
.tunnelMethod("string")
.tunnelPort(0.0)
.build())
.build())
.username("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_clickhouse_resource = airbyte.DestinationClickhouse("destinationClickhouseResource",
configuration={
"host": "string",
"password": "string",
"protocol": "string",
"additional_properties": "string",
"database": "string",
"enable_json": False,
"port": "string",
"record_window_size": 0,
"tunnel_method": {
"no_tunnel": {
"additional_properties": "string",
"tunnel_method": "string",
},
"password_authentication": {
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_user_password": "string",
"additional_properties": "string",
"tunnel_method": "string",
"tunnel_port": 0,
},
"ssh_key_authentication": {
"ssh_key": "string",
"tunnel_host": "string",
"tunnel_user": "string",
"additional_properties": "string",
"tunnel_method": "string",
"tunnel_port": 0,
},
},
"username": "string",
},
workspace_id="string",
definition_id="string",
name="string")
const destinationClickhouseResource = new airbyte.DestinationClickhouse("destinationClickhouseResource", {
configuration: {
host: "string",
password: "string",
protocol: "string",
additionalProperties: "string",
database: "string",
enableJson: false,
port: "string",
recordWindowSize: 0,
tunnelMethod: {
noTunnel: {
additionalProperties: "string",
tunnelMethod: "string",
},
passwordAuthentication: {
tunnelHost: "string",
tunnelUser: "string",
tunnelUserPassword: "string",
additionalProperties: "string",
tunnelMethod: "string",
tunnelPort: 0,
},
sshKeyAuthentication: {
sshKey: "string",
tunnelHost: "string",
tunnelUser: "string",
additionalProperties: "string",
tunnelMethod: "string",
tunnelPort: 0,
},
},
username: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
});
type: airbyte:DestinationClickhouse
properties:
configuration:
additionalProperties: string
database: string
enableJson: false
host: string
password: string
port: string
protocol: string
recordWindowSize: 0
tunnelMethod:
noTunnel:
additionalProperties: string
tunnelMethod: string
passwordAuthentication:
additionalProperties: string
tunnelHost: string
tunnelMethod: string
tunnelPort: 0
tunnelUser: string
tunnelUserPassword: string
sshKeyAuthentication:
additionalProperties: string
sshKey: string
tunnelHost: string
tunnelMethod: string
tunnelPort: 0
tunnelUser: string
username: string
definitionId: string
name: string
workspaceId: string
DestinationClickhouse 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 DestinationClickhouse resource accepts the following input properties:
- Configuration
Destination
Clickhouse Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- Configuration
Destination
Clickhouse Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- Name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Clickhouse Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- name String
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Clickhouse Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- name string
- Name of the destination e.g. dev-mysql-instance.
- configuration
Destination
Clickhouse Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- name str
- Name of the destination e.g. dev-mysql-instance.
- configuration Property Map
- The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; 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 DestinationClickhouse 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 DestinationClickhouse 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 DestinationClickhouse 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 DestinationClickhouse 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 DestinationClickhouse 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 DestinationClickhouse 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 DestinationClickhouse Resource
Get an existing DestinationClickhouse 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?: DestinationClickhouseState, opts?: CustomResourceOptions): DestinationClickhouse@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationClickhouseConfigurationArgs] = 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[DestinationClickhouseResourceAllocationArgs] = None,
workspace_id: Optional[str] = None) -> DestinationClickhousefunc GetDestinationClickhouse(ctx *Context, name string, id IDInput, state *DestinationClickhouseState, opts ...ResourceOption) (*DestinationClickhouse, error)public static DestinationClickhouse Get(string name, Input<string> id, DestinationClickhouseState? state, CustomResourceOptions? opts = null)public static DestinationClickhouse get(String name, Output<String> id, DestinationClickhouseState state, CustomResourceOptions options)resources: _: type: airbyte:DestinationClickhouse 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
Clickhouse Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationClickhouse 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
Clickhouse Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationClickhouse 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
Clickhouse Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationClickhouse 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
Clickhouse Configuration - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationClickhouse 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
Clickhouse Configuration Args - The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; Requires replacement if changed.
- destination_
id str - destination_
type str - name str
- Name of the destination e.g. dev-mysql-instance.
- resource_
allocation DestinationClickhouse 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
- The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition.
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Default: "ce0d828e-1dc4-496c-b122-2da42e637e48"; 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
DestinationClickhouseConfiguration, DestinationClickhouseConfigurationArgs
- Host string
- Hostname of the database.
- Password string
- Password associated with the username.
- Protocol string
- Protocol for the database connection string. must be one of ["http", "https"]
- Additional
Properties string - Parsed as JSON.
- Database string
- Name of the database. Default: "default"
- Enable
Json bool - Use the JSON type when possible. If disabled, the JSON will be converted to a string. Default: false
- Port string
- HTTP port of the database. Default(s) HTTP: 8123 — HTTPS: 8443. Default: "8443"
- Record
Window doubleSize - Warning: Tuning this parameter can impact the performances. The maximum number of records that should be written to a batch. The batch size limit is still limited to 70 Mb
- Tunnel
Method DestinationClickhouse Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Username string
- Username to use to access the database. Default: "default"
- Host string
- Hostname of the database.
- Password string
- Password associated with the username.
- Protocol string
- Protocol for the database connection string. must be one of ["http", "https"]
- Additional
Properties string - Parsed as JSON.
- Database string
- Name of the database. Default: "default"
- Enable
Json bool - Use the JSON type when possible. If disabled, the JSON will be converted to a string. Default: false
- Port string
- HTTP port of the database. Default(s) HTTP: 8123 — HTTPS: 8443. Default: "8443"
- Record
Window float64Size - Warning: Tuning this parameter can impact the performances. The maximum number of records that should be written to a batch. The batch size limit is still limited to 70 Mb
- Tunnel
Method DestinationClickhouse Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Username string
- Username to use to access the database. Default: "default"
- host String
- Hostname of the database.
- password String
- Password associated with the username.
- protocol String
- Protocol for the database connection string. must be one of ["http", "https"]
- additional
Properties String - Parsed as JSON.
- database String
- Name of the database. Default: "default"
- enable
Json Boolean - Use the JSON type when possible. If disabled, the JSON will be converted to a string. Default: false
- port String
- HTTP port of the database. Default(s) HTTP: 8123 — HTTPS: 8443. Default: "8443"
- record
Window DoubleSize - Warning: Tuning this parameter can impact the performances. The maximum number of records that should be written to a batch. The batch size limit is still limited to 70 Mb
- tunnel
Method DestinationClickhouse Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username String
- Username to use to access the database. Default: "default"
- host string
- Hostname of the database.
- password string
- Password associated with the username.
- protocol string
- Protocol for the database connection string. must be one of ["http", "https"]
- additional
Properties string - Parsed as JSON.
- database string
- Name of the database. Default: "default"
- enable
Json boolean - Use the JSON type when possible. If disabled, the JSON will be converted to a string. Default: false
- port string
- HTTP port of the database. Default(s) HTTP: 8123 — HTTPS: 8443. Default: "8443"
- record
Window numberSize - Warning: Tuning this parameter can impact the performances. The maximum number of records that should be written to a batch. The batch size limit is still limited to 70 Mb
- tunnel
Method DestinationClickhouse Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username string
- Username to use to access the database. Default: "default"
- host str
- Hostname of the database.
- password str
- Password associated with the username.
- protocol str
- Protocol for the database connection string. must be one of ["http", "https"]
- additional_
properties str - Parsed as JSON.
- database str
- Name of the database. Default: "default"
- enable_
json bool - Use the JSON type when possible. If disabled, the JSON will be converted to a string. Default: false
- port str
- HTTP port of the database. Default(s) HTTP: 8123 — HTTPS: 8443. Default: "8443"
- record_
window_ floatsize - Warning: Tuning this parameter can impact the performances. The maximum number of records that should be written to a batch. The batch size limit is still limited to 70 Mb
- tunnel_
method DestinationClickhouse Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username str
- Username to use to access the database. Default: "default"
- host String
- Hostname of the database.
- password String
- Password associated with the username.
- protocol String
- Protocol for the database connection string. must be one of ["http", "https"]
- additional
Properties String - Parsed as JSON.
- database String
- Name of the database. Default: "default"
- enable
Json Boolean - Use the JSON type when possible. If disabled, the JSON will be converted to a string. Default: false
- port String
- HTTP port of the database. Default(s) HTTP: 8123 — HTTPS: 8443. Default: "8443"
- record
Window NumberSize - Warning: Tuning this parameter can impact the performances. The maximum number of records that should be written to a batch. The batch size limit is still limited to 70 Mb
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username String
- Username to use to access the database. Default: "default"
DestinationClickhouseConfigurationTunnelMethod, DestinationClickhouseConfigurationTunnelMethodArgs
- No
Tunnel DestinationClickhouse Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- Password
Authentication DestinationClickhouse Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- Ssh
Key DestinationAuthentication Clickhouse Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- No
Tunnel DestinationClickhouse Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- Password
Authentication DestinationClickhouse Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- Ssh
Key DestinationAuthentication Clickhouse Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel DestinationClickhouse Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password
Authentication DestinationClickhouse Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh
Key DestinationAuthentication Clickhouse Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel DestinationClickhouse Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password
Authentication DestinationClickhouse Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh
Key DestinationAuthentication Clickhouse Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no_
tunnel DestinationClickhouse Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password_
authentication DestinationClickhouse Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh_
key_ Destinationauthentication Clickhouse Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel Property Map - No ssh tunnel needed to connect to database
- password
Authentication Property Map - Connect through a jump server tunnel host using username and password authentication
- ssh
Key Property MapAuthentication - Connect through a jump server tunnel host using username and ssh key
DestinationClickhouseConfigurationTunnelMethodNoTunnel, DestinationClickhouseConfigurationTunnelMethodNoTunnelArgs
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "NOTUNNEL"; must be "NOTUNNEL"
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional
Properties string - Parsed as JSON.
- tunnel
Method string - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional_
properties str - Parsed as JSON.
- tunnel_
method str - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "NOTUNNEL"; must be "NOTUNNEL"
DestinationClickhouseConfigurationTunnelMethodPasswordAuthentication, DestinationClickhouseConfigurationTunnelMethodPasswordAuthenticationArgs
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Tunnel
User stringPassword - OS-level password for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- Tunnel
Port double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Tunnel
User stringPassword - OS-level password for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- Tunnel
Port float64 - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- tunnel
User StringPassword - OS-level password for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel
Port Double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User string - OS-level username for logging into the jump server host
- tunnel
User stringPassword - OS-level password for logging into the jump server host
- additional
Properties string - Parsed as JSON.
- tunnel
Method string - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel
Port number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel_
host str - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel_
user str - OS-level username for logging into the jump server host
- tunnel_
user_ strpassword - OS-level password for logging into the jump server host
- additional_
properties str - Parsed as JSON.
- tunnel_
method str - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel_
port float - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- tunnel
User StringPassword - OS-level password for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
DestinationClickhouseConfigurationTunnelMethodSshKeyAuthentication, DestinationClickhouseConfigurationTunnelMethodSshKeyAuthenticationArgs
- Ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- Tunnel
Port double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- Ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- Tunnel
Port float64 - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key String - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel
Port Double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User string - OS-level username for logging into the jump server host
- additional
Properties string - Parsed as JSON.
- tunnel
Method string - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel
Port number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh_
key str - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel_
host str - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel_
user str - OS-level username for logging into the jump server host
- additional_
properties str - Parsed as JSON.
- tunnel_
method str - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel_
port float - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key String - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
DestinationClickhouseResourceAllocation, DestinationClickhouseResourceAllocationArgs
- Default
Destination
Clickhouse Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationClickhouse Resource Allocation Job Specific>
- Default
Destination
Clickhouse Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationClickhouse Resource Allocation Job Specific
- default_
Destination
Clickhouse Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationClickhouse Resource Allocation Job Specific>
- default
Destination
Clickhouse Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationClickhouse Resource Allocation Job Specific[]
- default
Destination
Clickhouse Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationClickhouse Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationClickhouseResourceAllocationDefault, DestinationClickhouseResourceAllocationDefaultArgs
- 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
DestinationClickhouseResourceAllocationJobSpecific, DestinationClickhouseResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs.
- Resource
Requirements DestinationClickhouse 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.
- Resource
Requirements DestinationClickhouse 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.
- resource
Requirements DestinationClickhouse 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.
- resource
Requirements DestinationClickhouse 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.
- resource_
requirements DestinationClickhouse 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.
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
DestinationClickhouseResourceAllocationJobSpecificResourceRequirements, DestinationClickhouseResourceAllocationJobSpecificResourceRequirementsArgs
- 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
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = airbyte_destination_clickhouse.my_airbyte_destination_clickhouse
id = “…”
}
The pulumi import command can be used, for example:
$ pulumi import airbyte:index/destinationClickhouse:DestinationClickhouse my_airbyte_destination_clickhouse "..."
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
airbyteTerraform Provider.
