1. Packages
  2. Airbyte Provider
  3. API Docs
  4. getConnections
airbyte 0.13.0 published on Friday, Jun 13, 2025 by airbytehq

airbyte.getConnections

Explore with Pulumi AI

airbyte logo
airbyte 0.13.0 published on Friday, Jun 13, 2025 by airbytehq

    Connections DataSource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as airbyte from "@pulumi/airbyte";
    
    const myConnections = airbyte.getConnections({
        includeDeleted: true,
        limit: 34,
        offset: 1,
        tagIds: ["05db8e59-424e-49ea-80ce-1db6a74f3dfc"],
        workspaceIds: ["a31bb8f4-e5b5-4dc9-bf1e-872e426f3223"],
    });
    
    import pulumi
    import pulumi_airbyte as airbyte
    
    my_connections = airbyte.get_connections(include_deleted=True,
        limit=34,
        offset=1,
        tag_ids=["05db8e59-424e-49ea-80ce-1db6a74f3dfc"],
        workspace_ids=["a31bb8f4-e5b5-4dc9-bf1e-872e426f3223"])
    
    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.GetConnections(ctx, &airbyte.GetConnectionsArgs{
    			IncludeDeleted: pulumi.BoolRef(true),
    			Limit:          pulumi.Float64Ref(34),
    			Offset:         pulumi.Float64Ref(1),
    			TagIds: []string{
    				"05db8e59-424e-49ea-80ce-1db6a74f3dfc",
    			},
    			WorkspaceIds: []string{
    				"a31bb8f4-e5b5-4dc9-bf1e-872e426f3223",
    			},
    		}, nil)
    		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 myConnections = Airbyte.GetConnections.Invoke(new()
        {
            IncludeDeleted = true,
            Limit = 34,
            Offset = 1,
            TagIds = new[]
            {
                "05db8e59-424e-49ea-80ce-1db6a74f3dfc",
            },
            WorkspaceIds = new[]
            {
                "a31bb8f4-e5b5-4dc9-bf1e-872e426f3223",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.AirbyteFunctions;
    import com.pulumi.airbyte.inputs.GetConnectionsArgs;
    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) {
            final var myConnections = AirbyteFunctions.getConnections(GetConnectionsArgs.builder()
                .includeDeleted(true)
                .limit(34)
                .offset(1)
                .tagIds("05db8e59-424e-49ea-80ce-1db6a74f3dfc")
                .workspaceIds("a31bb8f4-e5b5-4dc9-bf1e-872e426f3223")
                .build());
    
        }
    }
    
    variables:
      myConnections:
        fn::invoke:
          function: airbyte:getConnections
          arguments:
            includeDeleted: true
            limit: 34
            offset: 1
            tagIds:
              - 05db8e59-424e-49ea-80ce-1db6a74f3dfc
            workspaceIds:
              - a31bb8f4-e5b5-4dc9-bf1e-872e426f3223
    

    Using getConnections

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getConnections(args: GetConnectionsArgs, opts?: InvokeOptions): Promise<GetConnectionsResult>
    function getConnectionsOutput(args: GetConnectionsOutputArgs, opts?: InvokeOptions): Output<GetConnectionsResult>
    def get_connections(include_deleted: Optional[bool] = None,
                        limit: Optional[float] = None,
                        offset: Optional[float] = None,
                        tag_ids: Optional[Sequence[str]] = None,
                        workspace_ids: Optional[Sequence[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> GetConnectionsResult
    def get_connections_output(include_deleted: Optional[pulumi.Input[bool]] = None,
                        limit: Optional[pulumi.Input[float]] = None,
                        offset: Optional[pulumi.Input[float]] = None,
                        tag_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        workspace_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetConnectionsResult]
    func GetConnections(ctx *Context, args *GetConnectionsArgs, opts ...InvokeOption) (*GetConnectionsResult, error)
    func GetConnectionsOutput(ctx *Context, args *GetConnectionsOutputArgs, opts ...InvokeOption) GetConnectionsResultOutput

    > Note: This function is named GetConnections in the Go SDK.

    public static class GetConnections 
    {
        public static Task<GetConnectionsResult> InvokeAsync(GetConnectionsArgs args, InvokeOptions? opts = null)
        public static Output<GetConnectionsResult> Invoke(GetConnectionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetConnectionsResult> getConnections(GetConnectionsArgs args, InvokeOptions options)
    public static Output<GetConnectionsResult> getConnections(GetConnectionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: airbyte:index/getConnections:getConnections
      arguments:
        # arguments dictionary

    The following arguments are supported:

    IncludeDeleted bool
    Include deleted connections in the returned results.
    Limit double
    Set the limit on the number of Connections returned. The default is 20.
    Offset double
    Set the offset to start at when returning Connections. The default is 0
    TagIds List<string>
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    WorkspaceIds List<string>
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    IncludeDeleted bool
    Include deleted connections in the returned results.
    Limit float64
    Set the limit on the number of Connections returned. The default is 20.
    Offset float64
    Set the offset to start at when returning Connections. The default is 0
    TagIds []string
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    WorkspaceIds []string
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    includeDeleted Boolean
    Include deleted connections in the returned results.
    limit Double
    Set the limit on the number of Connections returned. The default is 20.
    offset Double
    Set the offset to start at when returning Connections. The default is 0
    tagIds List<String>
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspaceIds List<String>
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    includeDeleted boolean
    Include deleted connections in the returned results.
    limit number
    Set the limit on the number of Connections returned. The default is 20.
    offset number
    Set the offset to start at when returning Connections. The default is 0
    tagIds string[]
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspaceIds string[]
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    include_deleted bool
    Include deleted connections in the returned results.
    limit float
    Set the limit on the number of Connections returned. The default is 20.
    offset float
    Set the offset to start at when returning Connections. The default is 0
    tag_ids Sequence[str]
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspace_ids Sequence[str]
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    includeDeleted Boolean
    Include deleted connections in the returned results.
    limit Number
    Set the limit on the number of Connections returned. The default is 20.
    offset Number
    Set the offset to start at when returning Connections. The default is 0
    tagIds List<String>
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspaceIds List<String>
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.

    getConnections Result

    The following output properties are available:

    Datas List<GetConnectionsData>
    Id string
    The provider-assigned unique ID for this managed resource.
    Next string
    Previous string
    IncludeDeleted bool
    Include deleted connections in the returned results.
    Limit double
    Set the limit on the number of Connections returned. The default is 20.
    Offset double
    Set the offset to start at when returning Connections. The default is 0
    TagIds List<string>
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    WorkspaceIds List<string>
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    Datas []GetConnectionsData
    Id string
    The provider-assigned unique ID for this managed resource.
    Next string
    Previous string
    IncludeDeleted bool
    Include deleted connections in the returned results.
    Limit float64
    Set the limit on the number of Connections returned. The default is 20.
    Offset float64
    Set the offset to start at when returning Connections. The default is 0
    TagIds []string
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    WorkspaceIds []string
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    datas List<GetConnectionsData>
    id String
    The provider-assigned unique ID for this managed resource.
    next String
    previous String
    includeDeleted Boolean
    Include deleted connections in the returned results.
    limit Double
    Set the limit on the number of Connections returned. The default is 20.
    offset Double
    Set the offset to start at when returning Connections. The default is 0
    tagIds List<String>
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspaceIds List<String>
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    datas GetConnectionsData[]
    id string
    The provider-assigned unique ID for this managed resource.
    next string
    previous string
    includeDeleted boolean
    Include deleted connections in the returned results.
    limit number
    Set the limit on the number of Connections returned. The default is 20.
    offset number
    Set the offset to start at when returning Connections. The default is 0
    tagIds string[]
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspaceIds string[]
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    datas Sequence[GetConnectionsData]
    id str
    The provider-assigned unique ID for this managed resource.
    next str
    previous str
    include_deleted bool
    Include deleted connections in the returned results.
    limit float
    Set the limit on the number of Connections returned. The default is 20.
    offset float
    Set the offset to start at when returning Connections. The default is 0
    tag_ids Sequence[str]
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspace_ids Sequence[str]
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
    datas List<Property Map>
    id String
    The provider-assigned unique ID for this managed resource.
    next String
    previous String
    includeDeleted Boolean
    Include deleted connections in the returned results.
    limit Number
    Set the limit on the number of Connections returned. The default is 20.
    offset Number
    Set the offset to start at when returning Connections. The default is 0
    tagIds List<String>
    The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
    workspaceIds List<String>
    The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.

    Supporting Types

    GetConnectionsData

    Configurations GetConnectionsDataConfigurations
    A list of configured stream options for a connection.
    ConnectionId string
    CreatedAt double
    DestinationId string
    Name string
    NamespaceDefinition string
    Define the location where the data will be stored in the destination
    NamespaceFormat string
    NonBreakingSchemaUpdatesBehavior string
    Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
    Prefix string
    Schedule GetConnectionsDataSchedule
    schedule for when the the connection should run, per the schedule type
    SourceId string
    Status string
    Tags List<GetConnectionsDataTag>
    WorkspaceId string
    Configurations GetConnectionsDataConfigurations
    A list of configured stream options for a connection.
    ConnectionId string
    CreatedAt float64
    DestinationId string
    Name string
    NamespaceDefinition string
    Define the location where the data will be stored in the destination
    NamespaceFormat string
    NonBreakingSchemaUpdatesBehavior string
    Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
    Prefix string
    Schedule GetConnectionsDataSchedule
    schedule for when the the connection should run, per the schedule type
    SourceId string
    Status string
    Tags []GetConnectionsDataTag
    WorkspaceId string
    configurations GetConnectionsDataConfigurations
    A list of configured stream options for a connection.
    connectionId String
    createdAt Double
    destinationId String
    name String
    namespaceDefinition String
    Define the location where the data will be stored in the destination
    namespaceFormat String
    nonBreakingSchemaUpdatesBehavior String
    Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
    prefix String
    schedule GetConnectionsDataSchedule
    schedule for when the the connection should run, per the schedule type
    sourceId String
    status String
    tags List<GetConnectionsDataTag>
    workspaceId String
    configurations GetConnectionsDataConfigurations
    A list of configured stream options for a connection.
    connectionId string
    createdAt number
    destinationId string
    name string
    namespaceDefinition string
    Define the location where the data will be stored in the destination
    namespaceFormat string
    nonBreakingSchemaUpdatesBehavior string
    Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
    prefix string
    schedule GetConnectionsDataSchedule
    schedule for when the the connection should run, per the schedule type
    sourceId string
    status string
    tags GetConnectionsDataTag[]
    workspaceId string
    configurations GetConnectionsDataConfigurations
    A list of configured stream options for a connection.
    connection_id str
    created_at float
    destination_id str
    name str
    namespace_definition str
    Define the location where the data will be stored in the destination
    namespace_format str
    non_breaking_schema_updates_behavior str
    Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
    prefix str
    schedule GetConnectionsDataSchedule
    schedule for when the the connection should run, per the schedule type
    source_id str
    status str
    tags Sequence[GetConnectionsDataTag]
    workspace_id str
    configurations Property Map
    A list of configured stream options for a connection.
    connectionId String
    createdAt Number
    destinationId String
    name String
    namespaceDefinition String
    Define the location where the data will be stored in the destination
    namespaceFormat String
    nonBreakingSchemaUpdatesBehavior String
    Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
    prefix String
    schedule Property Map
    schedule for when the the connection should run, per the schedule type
    sourceId String
    status String
    tags List<Property Map>
    workspaceId String

    GetConnectionsDataConfigurations

    GetConnectionsDataConfigurationsStream

    CursorFields List<string>
    Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if sync_mode is incremental unless there is a default.
    DestinationObjectName string
    The name of the destination object that this stream will be written to, used for data activation destinations.
    IncludeFiles bool
    Whether to move raw files from the source to the destination during the sync.
    Mappers List<GetConnectionsDataConfigurationsStreamMapper>
    Mappers that should be applied to the stream before writing to the destination.
    Name string
    Namespace string
    Namespace of the stream.
    PrimaryKeys List<ImmutableArray<string>>
    Paths to the fields that will be used as primary key. This field is REQUIRED if destination_sync_mode is *_dedup unless it is already supplied by the source schema.
    SelectedFields List<GetConnectionsDataConfigurationsStreamSelectedField>
    Paths to the fields that will be included in the configured catalog.
    SyncMode string
    CursorFields []string
    Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if sync_mode is incremental unless there is a default.
    DestinationObjectName string
    The name of the destination object that this stream will be written to, used for data activation destinations.
    IncludeFiles bool
    Whether to move raw files from the source to the destination during the sync.
    Mappers []GetConnectionsDataConfigurationsStreamMapper
    Mappers that should be applied to the stream before writing to the destination.
    Name string
    Namespace string
    Namespace of the stream.
    PrimaryKeys [][]string
    Paths to the fields that will be used as primary key. This field is REQUIRED if destination_sync_mode is *_dedup unless it is already supplied by the source schema.
    SelectedFields []GetConnectionsDataConfigurationsStreamSelectedField
    Paths to the fields that will be included in the configured catalog.
    SyncMode string
    cursorFields List<String>
    Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if sync_mode is incremental unless there is a default.
    destinationObjectName String
    The name of the destination object that this stream will be written to, used for data activation destinations.
    includeFiles Boolean
    Whether to move raw files from the source to the destination during the sync.
    mappers List<GetConnectionsDataConfigurationsStreamMapper>
    Mappers that should be applied to the stream before writing to the destination.
    name String
    namespace String
    Namespace of the stream.
    primaryKeys List<List<String>>
    Paths to the fields that will be used as primary key. This field is REQUIRED if destination_sync_mode is *_dedup unless it is already supplied by the source schema.
    selectedFields List<GetConnectionsDataConfigurationsStreamSelectedField>
    Paths to the fields that will be included in the configured catalog.
    syncMode String
    cursorFields string[]
    Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if sync_mode is incremental unless there is a default.
    destinationObjectName string
    The name of the destination object that this stream will be written to, used for data activation destinations.
    includeFiles boolean
    Whether to move raw files from the source to the destination during the sync.
    mappers GetConnectionsDataConfigurationsStreamMapper[]
    Mappers that should be applied to the stream before writing to the destination.
    name string
    namespace string
    Namespace of the stream.
    primaryKeys string[][]
    Paths to the fields that will be used as primary key. This field is REQUIRED if destination_sync_mode is *_dedup unless it is already supplied by the source schema.
    selectedFields GetConnectionsDataConfigurationsStreamSelectedField[]
    Paths to the fields that will be included in the configured catalog.
    syncMode string
    cursor_fields Sequence[str]
    Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if sync_mode is incremental unless there is a default.
    destination_object_name str
    The name of the destination object that this stream will be written to, used for data activation destinations.
    include_files bool
    Whether to move raw files from the source to the destination during the sync.
    mappers Sequence[GetConnectionsDataConfigurationsStreamMapper]
    Mappers that should be applied to the stream before writing to the destination.
    name str
    namespace str
    Namespace of the stream.
    primary_keys Sequence[Sequence[str]]
    Paths to the fields that will be used as primary key. This field is REQUIRED if destination_sync_mode is *_dedup unless it is already supplied by the source schema.
    selected_fields Sequence[GetConnectionsDataConfigurationsStreamSelectedField]
    Paths to the fields that will be included in the configured catalog.
    sync_mode str
    cursorFields List<String>
    Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if sync_mode is incremental unless there is a default.
    destinationObjectName String
    The name of the destination object that this stream will be written to, used for data activation destinations.
    includeFiles Boolean
    Whether to move raw files from the source to the destination during the sync.
    mappers List<Property Map>
    Mappers that should be applied to the stream before writing to the destination.
    name String
    namespace String
    Namespace of the stream.
    primaryKeys List<List<String>>
    Paths to the fields that will be used as primary key. This field is REQUIRED if destination_sync_mode is *_dedup unless it is already supplied by the source schema.
    selectedFields List<Property Map>
    Paths to the fields that will be included in the configured catalog.
    syncMode String

    GetConnectionsDataConfigurationsStreamMapper

    Id string
    MapperConfiguration GetConnectionsDataConfigurationsStreamMapperMapperConfiguration
    The values required to configure the mapper.
    Type string
    Id string
    MapperConfiguration GetConnectionsDataConfigurationsStreamMapperMapperConfiguration
    The values required to configure the mapper.
    Type string
    id String
    mapperConfiguration GetConnectionsDataConfigurationsStreamMapperMapperConfiguration
    The values required to configure the mapper.
    type String
    id string
    mapperConfiguration GetConnectionsDataConfigurationsStreamMapperMapperConfiguration
    The values required to configure the mapper.
    type string
    id String
    mapperConfiguration Property Map
    The values required to configure the mapper.
    type String

    GetConnectionsDataConfigurationsStreamMapperMapperConfiguration

    GetConnectionsDataConfigurationsStreamMapperMapperConfigurationEncryption

    GetConnectionsDataConfigurationsStreamMapperMapperConfigurationEncryptionAes

    Algorithm string
    FieldNameSuffix string
    Key string
    Mode string
    Padding string
    TargetField string
    Algorithm string
    FieldNameSuffix string
    Key string
    Mode string
    Padding string
    TargetField string
    algorithm String
    fieldNameSuffix String
    key String
    mode String
    padding String
    targetField String
    algorithm string
    fieldNameSuffix string
    key string
    mode string
    padding string
    targetField string
    algorithm String
    fieldNameSuffix String
    key String
    mode String
    padding String
    targetField String

    GetConnectionsDataConfigurationsStreamMapperMapperConfigurationEncryptionRsa

    GetConnectionsDataConfigurationsStreamMapperMapperConfigurationFieldRenaming

    NewFieldName string
    The new name for the field after renaming.
    OriginalFieldName string
    The current name of the field to rename.
    NewFieldName string
    The new name for the field after renaming.
    OriginalFieldName string
    The current name of the field to rename.
    newFieldName String
    The new name for the field after renaming.
    originalFieldName String
    The current name of the field to rename.
    newFieldName string
    The new name for the field after renaming.
    originalFieldName string
    The current name of the field to rename.
    new_field_name str
    The new name for the field after renaming.
    original_field_name str
    The current name of the field to rename.
    newFieldName String
    The new name for the field after renaming.
    originalFieldName String
    The current name of the field to rename.

    GetConnectionsDataConfigurationsStreamMapperMapperConfigurationHashing

    FieldNameSuffix string
    The suffix to append to the field name after hashing.
    Method string
    The hashing algorithm to use.
    TargetField string
    The name of the field to be hashed.
    FieldNameSuffix string
    The suffix to append to the field name after hashing.
    Method string
    The hashing algorithm to use.
    TargetField string
    The name of the field to be hashed.
    fieldNameSuffix String
    The suffix to append to the field name after hashing.
    method String
    The hashing algorithm to use.
    targetField String
    The name of the field to be hashed.
    fieldNameSuffix string
    The suffix to append to the field name after hashing.
    method string
    The hashing algorithm to use.
    targetField string
    The name of the field to be hashed.
    field_name_suffix str
    The suffix to append to the field name after hashing.
    method str
    The hashing algorithm to use.
    target_field str
    The name of the field to be hashed.
    fieldNameSuffix String
    The suffix to append to the field name after hashing.
    method String
    The hashing algorithm to use.
    targetField String
    The name of the field to be hashed.

    GetConnectionsDataConfigurationsStreamMapperMapperConfigurationRowFiltering

    Conditions string
    Parsed as JSON.
    Conditions string
    Parsed as JSON.
    conditions String
    Parsed as JSON.
    conditions string
    Parsed as JSON.
    conditions str
    Parsed as JSON.
    conditions String
    Parsed as JSON.

    GetConnectionsDataConfigurationsStreamSelectedField

    FieldPaths List<string>
    FieldPaths []string
    fieldPaths List<String>
    fieldPaths string[]
    field_paths Sequence[str]
    fieldPaths List<String>

    GetConnectionsDataSchedule

    GetConnectionsDataTag

    Color string
    Name string
    TagId string
    WorkspaceId string
    Color string
    Name string
    TagId string
    WorkspaceId string
    color String
    name String
    tagId String
    workspaceId String
    color string
    name string
    tagId string
    workspaceId string
    color String
    name String
    tagId String
    workspaceId String

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    airbyte 0.13.0 published on Friday, Jun 13, 2025 by airbytehq