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

airbyte.DestinationTimeplus

Explore with Pulumi AI

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

    DestinationTimeplus Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as airbyte from "@pulumi/airbyte";
    
    const myDestinationTimeplus = new airbyte.DestinationTimeplus("myDestinationTimeplus", {
        configuration: {
            apikey: "...my_apikey...",
            endpoint: "https://us-west-2.timeplus.cloud/workspace_id",
        },
        definitionId: "d43166cf-9bf8-41f3-8eda-35047cfcd627",
        workspaceId: "3a25c57b-6ce4-4605-b223-5b0f748fcaee",
    });
    
    import pulumi
    import pulumi_airbyte as airbyte
    
    my_destination_timeplus = airbyte.DestinationTimeplus("myDestinationTimeplus",
        configuration={
            "apikey": "...my_apikey...",
            "endpoint": "https://us-west-2.timeplus.cloud/workspace_id",
        },
        definition_id="d43166cf-9bf8-41f3-8eda-35047cfcd627",
        workspace_id="3a25c57b-6ce4-4605-b223-5b0f748fcaee")
    
    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.NewDestinationTimeplus(ctx, "myDestinationTimeplus", &airbyte.DestinationTimeplusArgs{
    			Configuration: &airbyte.DestinationTimeplusConfigurationArgs{
    				Apikey:   pulumi.String("...my_apikey..."),
    				Endpoint: pulumi.String("https://us-west-2.timeplus.cloud/workspace_id"),
    			},
    			DefinitionId: pulumi.String("d43166cf-9bf8-41f3-8eda-35047cfcd627"),
    			WorkspaceId:  pulumi.String("3a25c57b-6ce4-4605-b223-5b0f748fcaee"),
    		})
    		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 myDestinationTimeplus = new Airbyte.DestinationTimeplus("myDestinationTimeplus", new()
        {
            Configuration = new Airbyte.Inputs.DestinationTimeplusConfigurationArgs
            {
                Apikey = "...my_apikey...",
                Endpoint = "https://us-west-2.timeplus.cloud/workspace_id",
            },
            DefinitionId = "d43166cf-9bf8-41f3-8eda-35047cfcd627",
            WorkspaceId = "3a25c57b-6ce4-4605-b223-5b0f748fcaee",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.DestinationTimeplus;
    import com.pulumi.airbyte.DestinationTimeplusArgs;
    import com.pulumi.airbyte.inputs.DestinationTimeplusConfigurationArgs;
    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 myDestinationTimeplus = new DestinationTimeplus("myDestinationTimeplus", DestinationTimeplusArgs.builder()
                .configuration(DestinationTimeplusConfigurationArgs.builder()
                    .apikey("...my_apikey...")
                    .endpoint("https://us-west-2.timeplus.cloud/workspace_id")
                    .build())
                .definitionId("d43166cf-9bf8-41f3-8eda-35047cfcd627")
                .workspaceId("3a25c57b-6ce4-4605-b223-5b0f748fcaee")
                .build());
    
        }
    }
    
    resources:
      myDestinationTimeplus:
        type: airbyte:DestinationTimeplus
        properties:
          configuration:
            apikey: '...my_apikey...'
            endpoint: https://us-west-2.timeplus.cloud/workspace_id
          definitionId: d43166cf-9bf8-41f3-8eda-35047cfcd627
          workspaceId: 3a25c57b-6ce4-4605-b223-5b0f748fcaee
    

    Create DestinationTimeplus Resource

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

    Constructor syntax

    new DestinationTimeplus(name: string, args: DestinationTimeplusArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationTimeplus(resource_name: str,
                            args: DestinationTimeplusArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationTimeplus(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            configuration: Optional[DestinationTimeplusConfigurationArgs] = None,
                            workspace_id: Optional[str] = None,
                            definition_id: Optional[str] = None,
                            name: Optional[str] = None)
    func NewDestinationTimeplus(ctx *Context, name string, args DestinationTimeplusArgs, opts ...ResourceOption) (*DestinationTimeplus, error)
    public DestinationTimeplus(string name, DestinationTimeplusArgs args, CustomResourceOptions? opts = null)
    public DestinationTimeplus(String name, DestinationTimeplusArgs args)
    public DestinationTimeplus(String name, DestinationTimeplusArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationTimeplus
    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 DestinationTimeplusArgs
    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 DestinationTimeplusArgs
    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 DestinationTimeplusArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationTimeplusArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationTimeplusArgs
    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 destinationTimeplusResource = new Airbyte.DestinationTimeplus("destinationTimeplusResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationTimeplusConfigurationArgs
        {
            Apikey = "string",
            Endpoint = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationTimeplus(ctx, "destinationTimeplusResource", &airbyte.DestinationTimeplusArgs{
    Configuration: &.DestinationTimeplusConfigurationArgs{
    Apikey: pulumi.String("string"),
    Endpoint: pulumi.String("string"),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationTimeplusResource = new DestinationTimeplus("destinationTimeplusResource", DestinationTimeplusArgs.builder()
        .configuration(DestinationTimeplusConfigurationArgs.builder()
            .apikey("string")
            .endpoint("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_timeplus_resource = airbyte.DestinationTimeplus("destinationTimeplusResource",
        configuration={
            "apikey": "string",
            "endpoint": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationTimeplusResource = new airbyte.DestinationTimeplus("destinationTimeplusResource", {
        configuration: {
            apikey: "string",
            endpoint: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationTimeplus
    properties:
        configuration:
            apikey: string
            endpoint: string
        definitionId: string
        name: string
        workspaceId: string
    

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

    Configuration DestinationTimeplusConfiguration
    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 DestinationTimeplusConfigurationArgs
    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 DestinationTimeplusConfiguration
    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 DestinationTimeplusConfiguration
    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 DestinationTimeplusConfigurationArgs
    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 DestinationTimeplus resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationTimeplusResourceAllocation
    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 DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.

    Look up Existing DestinationTimeplus Resource

    Get an existing DestinationTimeplus 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?: DestinationTimeplusState, opts?: CustomResourceOptions): DestinationTimeplus
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationTimeplusConfigurationArgs] = 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[DestinationTimeplusResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> DestinationTimeplus
    func GetDestinationTimeplus(ctx *Context, name string, id IDInput, state *DestinationTimeplusState, opts ...ResourceOption) (*DestinationTimeplus, error)
    public static DestinationTimeplus Get(string name, Input<string> id, DestinationTimeplusState? state, CustomResourceOptions? opts = null)
    public static DestinationTimeplus get(String name, Output<String> id, DestinationTimeplusState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationTimeplus    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 DestinationTimeplusConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    Configuration DestinationTimeplusConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationTimeplusResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    WorkspaceId string
    configuration DestinationTimeplusConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String
    configuration DestinationTimeplusConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationTimeplusResourceAllocation
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId string
    configuration DestinationTimeplusConfigurationArgs
    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 DestinationTimeplusResourceAllocationArgs
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    workspaceId String

    Supporting Types

    DestinationTimeplusConfiguration, DestinationTimeplusConfigurationArgs

    Apikey string
    Personal API key
    Endpoint string
    Timeplus workspace endpoint. Default: "https://us-west-2.timeplus.cloud/\n\n"
    Apikey string
    Personal API key
    Endpoint string
    Timeplus workspace endpoint. Default: "https://us-west-2.timeplus.cloud/\n\n"
    apikey String
    Personal API key
    endpoint String
    Timeplus workspace endpoint. Default: "https://us-west-2.timeplus.cloud/\n\n"
    apikey string
    Personal API key
    endpoint string
    Timeplus workspace endpoint. Default: "https://us-west-2.timeplus.cloud/\n\n"
    apikey str
    Personal API key
    endpoint str
    Timeplus workspace endpoint. Default: "https://us-west-2.timeplus.cloud/\n\n"
    apikey String
    Personal API key
    endpoint String
    Timeplus workspace endpoint. Default: "https://us-west-2.timeplus.cloud/\n\n"

    DestinationTimeplusResourceAllocation, DestinationTimeplusResourceAllocationArgs

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

    DestinationTimeplusResourceAllocationDefault, DestinationTimeplusResourceAllocationDefaultArgs

    DestinationTimeplusResourceAllocationJobSpecific, DestinationTimeplusResourceAllocationJobSpecificArgs

    JobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    ResourceRequirements DestinationTimeplusResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    JobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    ResourceRequirements DestinationTimeplusResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements DestinationTimeplusResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements DestinationTimeplusResourceAllocationJobSpecificResourceRequirements
    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 DestinationTimeplusResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations)

    DestinationTimeplusResourceAllocationJobSpecificResourceRequirements, DestinationTimeplusResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/destinationTimeplus:DestinationTimeplus my_airbyte_destination_timeplus ""
    

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

    Package Details

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