airbyte.SourceTodoist
Explore with Pulumi AI
SourceTodoist Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";
const mySourceTodoist = new airbyte.SourceTodoist("mySourceTodoist", {
    configuration: {
        token: "...my_token...",
    },
    definitionId: "9d21d09c-d3e9-4046-a593-2de1173af39b",
    secretId: "...my_secret_id...",
    workspaceId: "dcd79d11-0e19-4324-bbf1-881769d03e3a",
});
import pulumi
import pulumi_airbyte as airbyte
my_source_todoist = airbyte.SourceTodoist("mySourceTodoist",
    configuration={
        "token": "...my_token...",
    },
    definition_id="9d21d09c-d3e9-4046-a593-2de1173af39b",
    secret_id="...my_secret_id...",
    workspace_id="dcd79d11-0e19-4324-bbf1-881769d03e3a")
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.NewSourceTodoist(ctx, "mySourceTodoist", &airbyte.SourceTodoistArgs{
			Configuration: &airbyte.SourceTodoistConfigurationArgs{
				Token: pulumi.String("...my_token..."),
			},
			DefinitionId: pulumi.String("9d21d09c-d3e9-4046-a593-2de1173af39b"),
			SecretId:     pulumi.String("...my_secret_id..."),
			WorkspaceId:  pulumi.String("dcd79d11-0e19-4324-bbf1-881769d03e3a"),
		})
		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 mySourceTodoist = new Airbyte.SourceTodoist("mySourceTodoist", new()
    {
        Configuration = new Airbyte.Inputs.SourceTodoistConfigurationArgs
        {
            Token = "...my_token...",
        },
        DefinitionId = "9d21d09c-d3e9-4046-a593-2de1173af39b",
        SecretId = "...my_secret_id...",
        WorkspaceId = "dcd79d11-0e19-4324-bbf1-881769d03e3a",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceTodoist;
import com.pulumi.airbyte.SourceTodoistArgs;
import com.pulumi.airbyte.inputs.SourceTodoistConfigurationArgs;
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 mySourceTodoist = new SourceTodoist("mySourceTodoist", SourceTodoistArgs.builder()
            .configuration(SourceTodoistConfigurationArgs.builder()
                .token("...my_token...")
                .build())
            .definitionId("9d21d09c-d3e9-4046-a593-2de1173af39b")
            .secretId("...my_secret_id...")
            .workspaceId("dcd79d11-0e19-4324-bbf1-881769d03e3a")
            .build());
    }
}
resources:
  mySourceTodoist:
    type: airbyte:SourceTodoist
    properties:
      configuration:
        token: '...my_token...'
      definitionId: 9d21d09c-d3e9-4046-a593-2de1173af39b
      secretId: '...my_secret_id...'
      workspaceId: dcd79d11-0e19-4324-bbf1-881769d03e3a
Create SourceTodoist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceTodoist(name: string, args: SourceTodoistArgs, opts?: CustomResourceOptions);@overload
def SourceTodoist(resource_name: str,
                  args: SourceTodoistArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def SourceTodoist(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  configuration: Optional[SourceTodoistConfigurationArgs] = None,
                  workspace_id: Optional[str] = None,
                  definition_id: Optional[str] = None,
                  name: Optional[str] = None,
                  secret_id: Optional[str] = None)func NewSourceTodoist(ctx *Context, name string, args SourceTodoistArgs, opts ...ResourceOption) (*SourceTodoist, error)public SourceTodoist(string name, SourceTodoistArgs args, CustomResourceOptions? opts = null)
public SourceTodoist(String name, SourceTodoistArgs args)
public SourceTodoist(String name, SourceTodoistArgs args, CustomResourceOptions options)
type: airbyte:SourceTodoist
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 SourceTodoistArgs
- 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 SourceTodoistArgs
- 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 SourceTodoistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceTodoistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceTodoistArgs
- 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 sourceTodoistResource = new Airbyte.SourceTodoist("sourceTodoistResource", new()
{
    Configuration = new Airbyte.Inputs.SourceTodoistConfigurationArgs
    {
        Token = "string",
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
    SecretId = "string",
});
example, err := airbyte.NewSourceTodoist(ctx, "sourceTodoistResource", &airbyte.SourceTodoistArgs{
Configuration: &.SourceTodoistConfigurationArgs{
Token: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceTodoistResource = new SourceTodoist("sourceTodoistResource", SourceTodoistArgs.builder()
    .configuration(SourceTodoistConfigurationArgs.builder()
        .token("string")
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .secretId("string")
    .build());
source_todoist_resource = airbyte.SourceTodoist("sourceTodoistResource",
    configuration={
        "token": "string",
    },
    workspace_id="string",
    definition_id="string",
    name="string",
    secret_id="string")
const sourceTodoistResource = new airbyte.SourceTodoist("sourceTodoistResource", {
    configuration: {
        token: "string",
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
    secretId: "string",
});
type: airbyte:SourceTodoist
properties:
    configuration:
        token: string
    definitionId: string
    name: string
    secretId: string
    workspaceId: string
SourceTodoist 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 SourceTodoist resource accepts the following input properties:
- Configuration
SourceTodoist Configuration 
- WorkspaceId string
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
SourceTodoist Configuration Args 
- WorkspaceId string
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceTodoist Configuration 
- workspaceId String
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceTodoist Configuration 
- workspaceId string
- definitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceTodoist Configuration Args 
- workspace_id str
- definition_id str
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_id str
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspaceId String
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceTodoist resource produces the following output properties:
- CreatedAt double
- Id string
- The provider-assigned unique ID for this managed resource.
- SourceId string
- SourceType string
- CreatedAt float64
- Id string
- The provider-assigned unique ID for this managed resource.
- SourceId string
- SourceType string
- createdAt Double
- id String
- The provider-assigned unique ID for this managed resource.
- sourceId String
- sourceType String
- createdAt number
- id string
- The provider-assigned unique ID for this managed resource.
- sourceId string
- sourceType string
- created_at float
- id str
- The provider-assigned unique ID for this managed resource.
- source_id str
- source_type str
- createdAt Number
- id String
- The provider-assigned unique ID for this managed resource.
- sourceId String
- sourceType String
Look up Existing SourceTodoist Resource
Get an existing SourceTodoist 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?: SourceTodoistState, opts?: CustomResourceOptions): SourceTodoist@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[SourceTodoistConfigurationArgs] = None,
        created_at: Optional[float] = None,
        definition_id: Optional[str] = None,
        name: Optional[str] = None,
        secret_id: Optional[str] = None,
        source_id: Optional[str] = None,
        source_type: Optional[str] = None,
        workspace_id: Optional[str] = None) -> SourceTodoistfunc GetSourceTodoist(ctx *Context, name string, id IDInput, state *SourceTodoistState, opts ...ResourceOption) (*SourceTodoist, error)public static SourceTodoist Get(string name, Input<string> id, SourceTodoistState? state, CustomResourceOptions? opts = null)public static SourceTodoist get(String name, Output<String> id, SourceTodoistState state, CustomResourceOptions options)resources:  _:    type: airbyte:SourceTodoist    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
SourceTodoist Configuration 
- CreatedAt double
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- SourceId string
- SourceType string
- WorkspaceId string
- Configuration
SourceTodoist Configuration Args 
- CreatedAt float64
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- SourceId string
- SourceType string
- WorkspaceId string
- configuration
SourceTodoist Configuration 
- createdAt Double
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId String
- sourceType String
- workspaceId String
- configuration
SourceTodoist Configuration 
- createdAt number
- definitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId string
- sourceType string
- workspaceId string
- configuration
SourceTodoist Configuration Args 
- created_at float
- definition_id str
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_id str
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_id str
- source_type str
- workspace_id str
- configuration Property Map
- createdAt Number
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId String
- sourceType String
- workspaceId String
Supporting Types
SourceTodoistConfiguration, SourceTodoistConfigurationArgs      
- Token string
- API authorization bearer token for authenticating the API
- Token string
- API authorization bearer token for authenticating the API
- token String
- API authorization bearer token for authenticating the API
- token string
- API authorization bearer token for authenticating the API
- token str
- API authorization bearer token for authenticating the API
- token String
- API authorization bearer token for authenticating the API
Import
$ pulumi import airbyte:index/sourceTodoist:SourceTodoist my_airbyte_source_todoist ""
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.