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

airbyte.SourceAirtable

Explore with Pulumi AI

SourceAirtable Resource

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";

const mySourceAirtable = new airbyte.SourceAirtable("mySourceAirtable", {
    configuration: {
        credentials: {
            oAuth20: {
                accessToken: "...my_access_token...",
                clientId: "...my_client_id...",
                clientSecret: "...my_client_secret...",
                refreshToken: "...my_refresh_token...",
                tokenExpiryDate: "2022-01-14T11:50:58.504Z",
            },
        },
    },
    definitionId: "fdd0b7d7-bc62-4e45-9809-2513b5f90d61",
    secretId: "...my_secret_id...",
    workspaceId: "110737e7-1846-4cca-8ebc-d0f82e4b8ffb",
});
Copy
import pulumi
import pulumi_airbyte as airbyte

my_source_airtable = airbyte.SourceAirtable("mySourceAirtable",
    configuration={
        "credentials": {
            "o_auth20": {
                "access_token": "...my_access_token...",
                "client_id": "...my_client_id...",
                "client_secret": "...my_client_secret...",
                "refresh_token": "...my_refresh_token...",
                "token_expiry_date": "2022-01-14T11:50:58.504Z",
            },
        },
    },
    definition_id="fdd0b7d7-bc62-4e45-9809-2513b5f90d61",
    secret_id="...my_secret_id...",
    workspace_id="110737e7-1846-4cca-8ebc-d0f82e4b8ffb")
Copy
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.NewSourceAirtable(ctx, "mySourceAirtable", &airbyte.SourceAirtableArgs{
			Configuration: &airbyte.SourceAirtableConfigurationArgs{
				Credentials: &airbyte.SourceAirtableConfigurationCredentialsArgs{
					OAuth20: &airbyte.SourceAirtableConfigurationCredentialsOAuth20Args{
						AccessToken:     pulumi.String("...my_access_token..."),
						ClientId:        pulumi.String("...my_client_id..."),
						ClientSecret:    pulumi.String("...my_client_secret..."),
						RefreshToken:    pulumi.String("...my_refresh_token..."),
						TokenExpiryDate: pulumi.String("2022-01-14T11:50:58.504Z"),
					},
				},
			},
			DefinitionId: pulumi.String("fdd0b7d7-bc62-4e45-9809-2513b5f90d61"),
			SecretId:     pulumi.String("...my_secret_id..."),
			WorkspaceId:  pulumi.String("110737e7-1846-4cca-8ebc-d0f82e4b8ffb"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;

return await Deployment.RunAsync(() => 
{
    var mySourceAirtable = new Airbyte.SourceAirtable("mySourceAirtable", new()
    {
        Configuration = new Airbyte.Inputs.SourceAirtableConfigurationArgs
        {
            Credentials = new Airbyte.Inputs.SourceAirtableConfigurationCredentialsArgs
            {
                OAuth20 = new Airbyte.Inputs.SourceAirtableConfigurationCredentialsOAuth20Args
                {
                    AccessToken = "...my_access_token...",
                    ClientId = "...my_client_id...",
                    ClientSecret = "...my_client_secret...",
                    RefreshToken = "...my_refresh_token...",
                    TokenExpiryDate = "2022-01-14T11:50:58.504Z",
                },
            },
        },
        DefinitionId = "fdd0b7d7-bc62-4e45-9809-2513b5f90d61",
        SecretId = "...my_secret_id...",
        WorkspaceId = "110737e7-1846-4cca-8ebc-d0f82e4b8ffb",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceAirtable;
import com.pulumi.airbyte.SourceAirtableArgs;
import com.pulumi.airbyte.inputs.SourceAirtableConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceAirtableConfigurationCredentialsArgs;
import com.pulumi.airbyte.inputs.SourceAirtableConfigurationCredentialsOAuth20Args;
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 mySourceAirtable = new SourceAirtable("mySourceAirtable", SourceAirtableArgs.builder()
            .configuration(SourceAirtableConfigurationArgs.builder()
                .credentials(SourceAirtableConfigurationCredentialsArgs.builder()
                    .oAuth20(SourceAirtableConfigurationCredentialsOAuth20Args.builder()
                        .accessToken("...my_access_token...")
                        .clientId("...my_client_id...")
                        .clientSecret("...my_client_secret...")
                        .refreshToken("...my_refresh_token...")
                        .tokenExpiryDate("2022-01-14T11:50:58.504Z")
                        .build())
                    .build())
                .build())
            .definitionId("fdd0b7d7-bc62-4e45-9809-2513b5f90d61")
            .secretId("...my_secret_id...")
            .workspaceId("110737e7-1846-4cca-8ebc-d0f82e4b8ffb")
            .build());

    }
}
Copy
resources:
  mySourceAirtable:
    type: airbyte:SourceAirtable
    properties:
      configuration:
        credentials:
          oAuth20:
            accessToken: '...my_access_token...'
            clientId: '...my_client_id...'
            clientSecret: '...my_client_secret...'
            refreshToken: '...my_refresh_token...'
            tokenExpiryDate: 2022-01-14T11:50:58.504Z
      definitionId: fdd0b7d7-bc62-4e45-9809-2513b5f90d61
      secretId: '...my_secret_id...'
      workspaceId: 110737e7-1846-4cca-8ebc-d0f82e4b8ffb
Copy

Create SourceAirtable Resource

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

Constructor syntax

new SourceAirtable(name: string, args: SourceAirtableArgs, opts?: CustomResourceOptions);
@overload
def SourceAirtable(resource_name: str,
                   args: SourceAirtableArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def SourceAirtable(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   configuration: Optional[SourceAirtableConfigurationArgs] = None,
                   workspace_id: Optional[str] = None,
                   definition_id: Optional[str] = None,
                   name: Optional[str] = None,
                   secret_id: Optional[str] = None)
func NewSourceAirtable(ctx *Context, name string, args SourceAirtableArgs, opts ...ResourceOption) (*SourceAirtable, error)
public SourceAirtable(string name, SourceAirtableArgs args, CustomResourceOptions? opts = null)
public SourceAirtable(String name, SourceAirtableArgs args)
public SourceAirtable(String name, SourceAirtableArgs args, CustomResourceOptions options)
type: airbyte:SourceAirtable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SourceAirtableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SourceAirtableArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SourceAirtableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SourceAirtableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SourceAirtableArgs
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 sourceAirtableResource = new Airbyte.SourceAirtable("sourceAirtableResource", new()
{
    Configuration = new Airbyte.Inputs.SourceAirtableConfigurationArgs
    {
        Credentials = new Airbyte.Inputs.SourceAirtableConfigurationCredentialsArgs
        {
            OAuth20 = new Airbyte.Inputs.SourceAirtableConfigurationCredentialsOAuth20Args
            {
                ClientId = "string",
                ClientSecret = "string",
                RefreshToken = "string",
                AccessToken = "string",
                TokenExpiryDate = "string",
            },
            PersonalAccessToken = new Airbyte.Inputs.SourceAirtableConfigurationCredentialsPersonalAccessTokenArgs
            {
                ApiKey = "string",
            },
        },
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
    SecretId = "string",
});
Copy
example, err := airbyte.NewSourceAirtable(ctx, "sourceAirtableResource", &airbyte.SourceAirtableArgs{
Configuration: &.SourceAirtableConfigurationArgs{
Credentials: &.SourceAirtableConfigurationCredentialsArgs{
OAuth20: &.SourceAirtableConfigurationCredentialsOAuth20Args{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshToken: pulumi.String("string"),
AccessToken: pulumi.String("string"),
TokenExpiryDate: pulumi.String("string"),
},
PersonalAccessToken: &.SourceAirtableConfigurationCredentialsPersonalAccessTokenArgs{
ApiKey: pulumi.String("string"),
},
},
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
Copy
var sourceAirtableResource = new SourceAirtable("sourceAirtableResource", SourceAirtableArgs.builder()
    .configuration(SourceAirtableConfigurationArgs.builder()
        .credentials(SourceAirtableConfigurationCredentialsArgs.builder()
            .oAuth20(SourceAirtableConfigurationCredentialsOAuth20Args.builder()
                .clientId("string")
                .clientSecret("string")
                .refreshToken("string")
                .accessToken("string")
                .tokenExpiryDate("string")
                .build())
            .personalAccessToken(SourceAirtableConfigurationCredentialsPersonalAccessTokenArgs.builder()
                .apiKey("string")
                .build())
            .build())
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .secretId("string")
    .build());
Copy
source_airtable_resource = airbyte.SourceAirtable("sourceAirtableResource",
    configuration={
        "credentials": {
            "o_auth20": {
                "client_id": "string",
                "client_secret": "string",
                "refresh_token": "string",
                "access_token": "string",
                "token_expiry_date": "string",
            },
            "personal_access_token": {
                "api_key": "string",
            },
        },
    },
    workspace_id="string",
    definition_id="string",
    name="string",
    secret_id="string")
Copy
const sourceAirtableResource = new airbyte.SourceAirtable("sourceAirtableResource", {
    configuration: {
        credentials: {
            oAuth20: {
                clientId: "string",
                clientSecret: "string",
                refreshToken: "string",
                accessToken: "string",
                tokenExpiryDate: "string",
            },
            personalAccessToken: {
                apiKey: "string",
            },
        },
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
    secretId: "string",
});
Copy
type: airbyte:SourceAirtable
properties:
    configuration:
        credentials:
            oAuth20:
                accessToken: string
                clientId: string
                clientSecret: string
                refreshToken: string
                tokenExpiryDate: string
            personalAccessToken:
                apiKey: string
    definitionId: string
    name: string
    secretId: string
    workspaceId: string
Copy

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

Configuration This property is required. SourceAirtableConfiguration
WorkspaceId This property is required. 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 This property is required. SourceAirtableConfigurationArgs
WorkspaceId This property is required. 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 This property is required. SourceAirtableConfiguration
workspaceId This property is required. 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 This property is required. SourceAirtableConfiguration
workspaceId This property is required. 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 This property is required. SourceAirtableConfigurationArgs
workspace_id This property is required. 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 This property is required. Property Map
workspaceId This property is required. 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 SourceAirtable resource produces the following output properties:

CreatedAt double
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation SourceAirtableResourceAllocation
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.
SourceId string
SourceType string
CreatedAt float64
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation SourceAirtableResourceAllocation
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.
SourceId string
SourceType string
createdAt Double
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation SourceAirtableResourceAllocation
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.
sourceId String
sourceType String
createdAt number
id string
The provider-assigned unique ID for this managed resource.
resourceAllocation SourceAirtableResourceAllocation
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.
sourceId string
sourceType string
created_at float
id str
The provider-assigned unique ID for this managed resource.
resource_allocation SourceAirtableResourceAllocation
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.
source_id str
source_type str
createdAt Number
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.
sourceId String
sourceType String

Look up Existing SourceAirtable Resource

Get an existing SourceAirtable 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?: SourceAirtableState, opts?: CustomResourceOptions): SourceAirtable
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[SourceAirtableConfigurationArgs] = None,
        created_at: Optional[float] = None,
        definition_id: Optional[str] = None,
        name: Optional[str] = None,
        resource_allocation: Optional[SourceAirtableResourceAllocationArgs] = None,
        secret_id: Optional[str] = None,
        source_id: Optional[str] = None,
        source_type: Optional[str] = None,
        workspace_id: Optional[str] = None) -> SourceAirtable
func GetSourceAirtable(ctx *Context, name string, id IDInput, state *SourceAirtableState, opts ...ResourceOption) (*SourceAirtable, error)
public static SourceAirtable Get(string name, Input<string> id, SourceAirtableState? state, CustomResourceOptions? opts = null)
public static SourceAirtable get(String name, Output<String> id, SourceAirtableState state, CustomResourceOptions options)
resources:  _:    type: airbyte:SourceAirtable    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 SourceAirtableConfiguration
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.
ResourceAllocation SourceAirtableResourceAllocation
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.
SecretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
SourceId string
SourceType string
WorkspaceId string
Configuration SourceAirtableConfigurationArgs
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.
ResourceAllocation SourceAirtableResourceAllocationArgs
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.
SecretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
SourceId string
SourceType string
WorkspaceId string
configuration SourceAirtableConfiguration
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.
resourceAllocation SourceAirtableResourceAllocation
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.
secretId String
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
sourceId String
sourceType String
workspaceId String
configuration SourceAirtableConfiguration
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.
resourceAllocation SourceAirtableResourceAllocation
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.
secretId string
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
sourceId string
sourceType string
workspaceId string
configuration SourceAirtableConfigurationArgs
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.
resource_allocation SourceAirtableResourceAllocationArgs
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.
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.
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.
secretId String
Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
sourceId String
sourceType String
workspaceId String

Supporting Types

SourceAirtableConfiguration
, SourceAirtableConfigurationArgs

SourceAirtableConfigurationCredentials
, SourceAirtableConfigurationCredentialsArgs

SourceAirtableConfigurationCredentialsOAuth20
, SourceAirtableConfigurationCredentialsOAuth20Args

ClientId This property is required. string
The client ID of the Airtable developer application.
ClientSecret This property is required. string
The client secret of the Airtable developer application.
RefreshToken This property is required. string
The key to refresh the expired access token.
AccessToken string
Access Token for making authenticated requests.
TokenExpiryDate string
The date-time when the access token should be refreshed.
ClientId This property is required. string
The client ID of the Airtable developer application.
ClientSecret This property is required. string
The client secret of the Airtable developer application.
RefreshToken This property is required. string
The key to refresh the expired access token.
AccessToken string
Access Token for making authenticated requests.
TokenExpiryDate string
The date-time when the access token should be refreshed.
clientId This property is required. String
The client ID of the Airtable developer application.
clientSecret This property is required. String
The client secret of the Airtable developer application.
refreshToken This property is required. String
The key to refresh the expired access token.
accessToken String
Access Token for making authenticated requests.
tokenExpiryDate String
The date-time when the access token should be refreshed.
clientId This property is required. string
The client ID of the Airtable developer application.
clientSecret This property is required. string
The client secret of the Airtable developer application.
refreshToken This property is required. string
The key to refresh the expired access token.
accessToken string
Access Token for making authenticated requests.
tokenExpiryDate string
The date-time when the access token should be refreshed.
client_id This property is required. str
The client ID of the Airtable developer application.
client_secret This property is required. str
The client secret of the Airtable developer application.
refresh_token This property is required. str
The key to refresh the expired access token.
access_token str
Access Token for making authenticated requests.
token_expiry_date str
The date-time when the access token should be refreshed.
clientId This property is required. String
The client ID of the Airtable developer application.
clientSecret This property is required. String
The client secret of the Airtable developer application.
refreshToken This property is required. String
The key to refresh the expired access token.
accessToken String
Access Token for making authenticated requests.
tokenExpiryDate String
The date-time when the access token should be refreshed.

SourceAirtableConfigurationCredentialsPersonalAccessToken
, SourceAirtableConfigurationCredentialsPersonalAccessTokenArgs

ApiKey This property is required. string
The Personal Access Token for the Airtable account. See the \n\nSupport Guide\n\n for more information on how to obtain this token.
ApiKey This property is required. string
The Personal Access Token for the Airtable account. See the \n\nSupport Guide\n\n for more information on how to obtain this token.
apiKey This property is required. String
The Personal Access Token for the Airtable account. See the \n\nSupport Guide\n\n for more information on how to obtain this token.
apiKey This property is required. string
The Personal Access Token for the Airtable account. See the \n\nSupport Guide\n\n for more information on how to obtain this token.
api_key This property is required. str
The Personal Access Token for the Airtable account. See the \n\nSupport Guide\n\n for more information on how to obtain this token.
apiKey This property is required. String
The Personal Access Token for the Airtable account. See the \n\nSupport Guide\n\n for more information on how to obtain this token.

SourceAirtableResourceAllocation
, SourceAirtableResourceAllocationArgs

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

SourceAirtableResourceAllocationDefault
, SourceAirtableResourceAllocationDefaultArgs

SourceAirtableResourceAllocationJobSpecific
, SourceAirtableResourceAllocationJobSpecificArgs

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 SourceAirtableResourceAllocationJobSpecificResourceRequirements
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 SourceAirtableResourceAllocationJobSpecificResourceRequirements
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 SourceAirtableResourceAllocationJobSpecificResourceRequirements
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 SourceAirtableResourceAllocationJobSpecificResourceRequirements
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 SourceAirtableResourceAllocationJobSpecificResourceRequirements
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)

SourceAirtableResourceAllocationJobSpecificResourceRequirements
, SourceAirtableResourceAllocationJobSpecificResourceRequirementsArgs

Import

$ pulumi import airbyte:index/sourceAirtable:SourceAirtable my_airbyte_source_airtable ""
Copy

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.