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

airbyte.DestinationDuckdb

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    DestinationDuckdb Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.DestinationDuckdb;
    import com.pulumi.airbyte.DestinationDuckdbArgs;
    import com.pulumi.airbyte.inputs.DestinationDuckdbConfigurationArgs;
    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 myDestinationDuckdb = new DestinationDuckdb("myDestinationDuckdb", DestinationDuckdbArgs.builder()
                .configuration(DestinationDuckdbConfigurationArgs.builder()
                    .destination_path("/local/destination.duckdb")
                    .motherduck_api_key("...my_motherduck_api_key...")
                    .schema("main")
                    .build())
                .definitionId("955e96a5-34d1-40de-93d5-ac72942da8bd")
                .workspaceId("878710f8-90aa-4e37-8e01-c0cce0824fd2")
                .build());
    
        }
    }
    
    resources:
      myDestinationDuckdb:
        type: airbyte:DestinationDuckdb
        properties:
          configuration:
            destination_path: /local/destination.duckdb
            motherduck_api_key: '...my_motherduck_api_key...'
            schema: main
          definitionId: 955e96a5-34d1-40de-93d5-ac72942da8bd
          workspaceId: 878710f8-90aa-4e37-8e01-c0cce0824fd2
    

    Create DestinationDuckdb Resource

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

    Constructor syntax

    new DestinationDuckdb(name: string, args: DestinationDuckdbArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationDuckdb(resource_name: str,
                          args: DestinationDuckdbArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationDuckdb(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          configuration: Optional[DestinationDuckdbConfigurationArgs] = None,
                          workspace_id: Optional[str] = None,
                          definition_id: Optional[str] = None,
                          name: Optional[str] = None)
    func NewDestinationDuckdb(ctx *Context, name string, args DestinationDuckdbArgs, opts ...ResourceOption) (*DestinationDuckdb, error)
    public DestinationDuckdb(string name, DestinationDuckdbArgs args, CustomResourceOptions? opts = null)
    public DestinationDuckdb(String name, DestinationDuckdbArgs args)
    public DestinationDuckdb(String name, DestinationDuckdbArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationDuckdb
    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 DestinationDuckdbArgs
    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 DestinationDuckdbArgs
    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 DestinationDuckdbArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationDuckdbArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationDuckdbArgs
    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 destinationDuckdbResource = new Airbyte.DestinationDuckdb("destinationDuckdbResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationDuckdbConfigurationArgs
        {
            DestinationPath = "string",
            MotherduckApiKey = "string",
            Schema = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationDuckdb(ctx, "destinationDuckdbResource", &airbyte.DestinationDuckdbArgs{
    Configuration: &.DestinationDuckdbConfigurationArgs{
    DestinationPath: pulumi.String("string"),
    MotherduckApiKey: pulumi.String("string"),
    Schema: pulumi.String("string"),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationDuckdbResource = new DestinationDuckdb("destinationDuckdbResource", DestinationDuckdbArgs.builder()
        .configuration(DestinationDuckdbConfigurationArgs.builder()
            .destinationPath("string")
            .motherduckApiKey("string")
            .schema("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_duckdb_resource = airbyte.DestinationDuckdb("destinationDuckdbResource",
        configuration={
            "destination_path": "string",
            "motherduck_api_key": "string",
            "schema": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationDuckdbResource = new airbyte.DestinationDuckdb("destinationDuckdbResource", {
        configuration: {
            destinationPath: "string",
            motherduckApiKey: "string",
            schema: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationDuckdb
    properties:
        configuration:
            destinationPath: string
            motherduckApiKey: string
            schema: string
        definitionId: string
        name: string
        workspaceId: string
    

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

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

    Outputs

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

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DestinationDuckdb Resource

    Get an existing DestinationDuckdb 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?: DestinationDuckdbState, opts?: CustomResourceOptions): DestinationDuckdb
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationDuckdbConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            workspace_id: Optional[str] = None) -> DestinationDuckdb
    func GetDestinationDuckdb(ctx *Context, name string, id IDInput, state *DestinationDuckdbState, opts ...ResourceOption) (*DestinationDuckdb, error)
    public static DestinationDuckdb Get(string name, Input<string> id, DestinationDuckdbState? state, CustomResourceOptions? opts = null)
    public static DestinationDuckdb get(String name, Output<String> id, DestinationDuckdbState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationDuckdb    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Configuration DestinationDuckdbConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    Configuration DestinationDuckdbConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    configuration DestinationDuckdbConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String
    configuration DestinationDuckdbConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    workspaceId string
    configuration DestinationDuckdbConfigurationArgs
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String

    Supporting Types

    DestinationDuckdbConfiguration, DestinationDuckdbConfigurationArgs

    DestinationPath string
    Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our \n\ndocs\n\n
    MotherduckApiKey string
    API key to use for authentication to a MotherDuck database.
    Schema string
    Database schema name, default for duckdb is 'main'.
    DestinationPath string
    Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our \n\ndocs\n\n
    MotherduckApiKey string
    API key to use for authentication to a MotherDuck database.
    Schema string
    Database schema name, default for duckdb is 'main'.
    destinationPath String
    Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our \n\ndocs\n\n
    motherduckApiKey String
    API key to use for authentication to a MotherDuck database.
    schema String
    Database schema name, default for duckdb is 'main'.
    destinationPath string
    Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our \n\ndocs\n\n
    motherduckApiKey string
    API key to use for authentication to a MotherDuck database.
    schema string
    Database schema name, default for duckdb is 'main'.
    destination_path str
    Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our \n\ndocs\n\n
    motherduck_api_key str
    API key to use for authentication to a MotherDuck database.
    schema str
    Database schema name, default for duckdb is 'main'.
    destinationPath String
    Path to the .duckdb file, or the text 'md:' to connect to MotherDuck. The file will be placed inside that local mount. For more information check out our \n\ndocs\n\n
    motherduckApiKey String
    API key to use for authentication to a MotherDuck database.
    schema String
    Database schema name, default for duckdb is 'main'.

    Import

    $ pulumi import airbyte:index/destinationDuckdb:DestinationDuckdb my_airbyte_destination_duckdb ""
    

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

    Package Details

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