1. Packages
  2. Airbyte Provider
  3. API Docs
  4. Source
Viewing docs for airbyte 1.0.0
published on Wednesday, Mar 4, 2026 by airbytehq
airbyte logo
Viewing docs for airbyte 1.0.0
published on Wednesday, Mar 4, 2026 by airbytehq

    Import

    $ pulumi import airbyte:index/source:Source my_airbyte_source "..."
    

    In Terraform v1.5.0 and later, the import block can be used:

    terraform

    import {

    to = airbyte_source.my_airbyte_source

    id = “…”

    }

    Create Source Resource

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

    Constructor syntax

    new Source(name: string, args: SourceArgs, opts?: CustomResourceOptions);
    @overload
    def Source(resource_name: str,
               args: SourceArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Source(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               configuration: Optional[str] = None,
               workspace_id: Optional[str] = None,
               definition_id: Optional[str] = None,
               name: Optional[str] = None,
               resource_allocation: Optional[SourceResourceAllocationArgs] = None,
               secret_id: Optional[str] = None)
    func NewSource(ctx *Context, name string, args SourceArgs, opts ...ResourceOption) (*Source, error)
    public Source(string name, SourceArgs args, CustomResourceOptions? opts = null)
    public Source(String name, SourceArgs args)
    public Source(String name, SourceArgs args, CustomResourceOptions options)
    
    type: airbyte:Source
    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 SourceArgs
    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 SourceArgs
    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 SourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceArgs
    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 sourceResource = new Airbyte.Source("sourceResource", new()
    {
        Configuration = "string",
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        ResourceAllocation = new Airbyte.Inputs.SourceResourceAllocationArgs
        {
            Default = new Airbyte.Inputs.SourceResourceAllocationDefaultArgs
            {
                CpuLimit = "string",
                CpuRequest = "string",
                EphemeralStorageLimit = "string",
                EphemeralStorageRequest = "string",
                MemoryLimit = "string",
                MemoryRequest = "string",
            },
            JobSpecifics = new[]
            {
                new Airbyte.Inputs.SourceResourceAllocationJobSpecificArgs
                {
                    JobType = "string",
                    ResourceRequirements = new Airbyte.Inputs.SourceResourceAllocationJobSpecificResourceRequirementsArgs
                    {
                        CpuLimit = "string",
                        CpuRequest = "string",
                        EphemeralStorageLimit = "string",
                        EphemeralStorageRequest = "string",
                        MemoryLimit = "string",
                        MemoryRequest = "string",
                    },
                },
            },
        },
        SecretId = "string",
    });
    
    example, err := airbyte.NewSource(ctx, "sourceResource", &airbyte.SourceArgs{
    	Configuration: pulumi.String("string"),
    	WorkspaceId:   pulumi.String("string"),
    	DefinitionId:  pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	ResourceAllocation: &airbyte.SourceResourceAllocationArgs{
    		Default: &airbyte.SourceResourceAllocationDefaultArgs{
    			CpuLimit:                pulumi.String("string"),
    			CpuRequest:              pulumi.String("string"),
    			EphemeralStorageLimit:   pulumi.String("string"),
    			EphemeralStorageRequest: pulumi.String("string"),
    			MemoryLimit:             pulumi.String("string"),
    			MemoryRequest:           pulumi.String("string"),
    		},
    		JobSpecifics: airbyte.SourceResourceAllocationJobSpecificArray{
    			&airbyte.SourceResourceAllocationJobSpecificArgs{
    				JobType: pulumi.String("string"),
    				ResourceRequirements: &airbyte.SourceResourceAllocationJobSpecificResourceRequirementsArgs{
    					CpuLimit:                pulumi.String("string"),
    					CpuRequest:              pulumi.String("string"),
    					EphemeralStorageLimit:   pulumi.String("string"),
    					EphemeralStorageRequest: pulumi.String("string"),
    					MemoryLimit:             pulumi.String("string"),
    					MemoryRequest:           pulumi.String("string"),
    				},
    			},
    		},
    	},
    	SecretId: pulumi.String("string"),
    })
    
    var sourceResource = new Source("sourceResource", SourceArgs.builder()
        .configuration("string")
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .resourceAllocation(SourceResourceAllocationArgs.builder()
            .default_(SourceResourceAllocationDefaultArgs.builder()
                .cpuLimit("string")
                .cpuRequest("string")
                .ephemeralStorageLimit("string")
                .ephemeralStorageRequest("string")
                .memoryLimit("string")
                .memoryRequest("string")
                .build())
            .jobSpecifics(SourceResourceAllocationJobSpecificArgs.builder()
                .jobType("string")
                .resourceRequirements(SourceResourceAllocationJobSpecificResourceRequirementsArgs.builder()
                    .cpuLimit("string")
                    .cpuRequest("string")
                    .ephemeralStorageLimit("string")
                    .ephemeralStorageRequest("string")
                    .memoryLimit("string")
                    .memoryRequest("string")
                    .build())
                .build())
            .build())
        .secretId("string")
        .build());
    
    source_resource = airbyte.Source("sourceResource",
        configuration="string",
        workspace_id="string",
        definition_id="string",
        name="string",
        resource_allocation={
            "default": {
                "cpu_limit": "string",
                "cpu_request": "string",
                "ephemeral_storage_limit": "string",
                "ephemeral_storage_request": "string",
                "memory_limit": "string",
                "memory_request": "string",
            },
            "job_specifics": [{
                "job_type": "string",
                "resource_requirements": {
                    "cpu_limit": "string",
                    "cpu_request": "string",
                    "ephemeral_storage_limit": "string",
                    "ephemeral_storage_request": "string",
                    "memory_limit": "string",
                    "memory_request": "string",
                },
            }],
        },
        secret_id="string")
    
    const sourceResource = new airbyte.Source("sourceResource", {
        configuration: "string",
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        resourceAllocation: {
            "default": {
                cpuLimit: "string",
                cpuRequest: "string",
                ephemeralStorageLimit: "string",
                ephemeralStorageRequest: "string",
                memoryLimit: "string",
                memoryRequest: "string",
            },
            jobSpecifics: [{
                jobType: "string",
                resourceRequirements: {
                    cpuLimit: "string",
                    cpuRequest: "string",
                    ephemeralStorageLimit: "string",
                    ephemeralStorageRequest: "string",
                    memoryLimit: "string",
                    memoryRequest: "string",
                },
            }],
        },
        secretId: "string",
    });
    
    type: airbyte:Source
    properties:
        configuration: string
        definitionId: string
        name: string
        resourceAllocation:
            default:
                cpuLimit: string
                cpuRequest: string
                ephemeralStorageLimit: string
                ephemeralStorageRequest: string
                memoryLimit: string
                memoryRequest: string
            jobSpecifics:
                - jobType: string
                  resourceRequirements:
                    cpuLimit: string
                    cpuRequest: string
                    ephemeralStorageLimit: string
                    ephemeralStorageRequest: string
                    memoryLimit: string
                    memoryRequest: string
        secretId: string
        workspaceId: string
    

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

    Configuration string
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    WorkspaceId string
    Requires replacement if changed.
    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 SourceResourceAllocation
    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 OAuth redirect flow. Requires replacement if changed.
    Configuration string
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    WorkspaceId string
    Requires replacement if changed.
    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 SourceResourceAllocationArgs
    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 OAuth redirect flow. Requires replacement if changed.
    configuration String
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    workspaceId String
    Requires replacement if changed.
    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 SourceResourceAllocation
    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 OAuth redirect flow. Requires replacement if changed.
    configuration string
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    workspaceId string
    Requires replacement if changed.
    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 SourceResourceAllocation
    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 OAuth redirect flow. Requires replacement if changed.
    configuration str
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    workspace_id str
    Requires replacement if changed.
    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 SourceResourceAllocationArgs
    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 OAuth redirect flow. Requires replacement if changed.
    configuration String
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    workspaceId String
    Requires replacement if changed.
    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 OAuth redirect flow. Requires replacement if changed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Source 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 Source Resource

    Get an existing Source 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?: SourceState, opts?: CustomResourceOptions): Source
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[str] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[SourceResourceAllocationArgs] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> Source
    func GetSource(ctx *Context, name string, id IDInput, state *SourceState, opts ...ResourceOption) (*Source, error)
    public static Source Get(string name, Input<string> id, SourceState? state, CustomResourceOptions? opts = null)
    public static Source get(String name, Output<String> id, SourceState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:Source    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 string
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    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 SourceResourceAllocation
    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 OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    Requires replacement if changed.
    Configuration string
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    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 SourceResourceAllocationArgs
    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 OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    Requires replacement if changed.
    configuration String
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    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 SourceResourceAllocation
    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 OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String
    Requires replacement if changed.
    configuration string
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    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 SourceResourceAllocation
    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 OAuth redirect flow. Requires replacement if changed.
    sourceId string
    sourceType string
    workspaceId string
    Requires replacement if changed.
    configuration str
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    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 SourceResourceAllocationArgs
    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 OAuth redirect flow. Requires replacement if changed.
    source_id str
    source_type str
    workspace_id str
    Requires replacement if changed.
    configuration String
    The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source. Parsed as JSON.
    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 OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String
    Requires replacement if changed.

    Supporting Types

    SourceResourceAllocation, SourceResourceAllocationArgs

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

    SourceResourceAllocationDefault, SourceResourceAllocationDefaultArgs

    SourceResourceAllocationJobSpecific, SourceResourceAllocationJobSpecificArgs

    JobType string
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    ResourceRequirements SourceResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    JobType string
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    ResourceRequirements SourceResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    jobType String
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resourceRequirements SourceResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    jobType string
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resourceRequirements SourceResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    job_type str
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resource_requirements SourceResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    jobType String
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations). Not Null

    SourceResourceAllocationJobSpecificResourceRequirements, SourceResourceAllocationJobSpecificResourceRequirementsArgs

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    Viewing docs for airbyte 1.0.0
    published on Wednesday, Mar 4, 2026 by airbytehq
      Try Pulumi Cloud free. Your team will thank you.