airbyte 0.13.0 published on Friday, Jun 13, 2025 by airbytehq
airbyte.getConnections
Explore with Pulumi AI
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:
- Include
Deleted 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
- Tag
Ids List<string> - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- Workspace
Ids List<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 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
- Tag
Ids []string - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- Workspace
Ids []string - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
- include
Deleted 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
- tag
Ids List<String> - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- workspace
Ids List<String> - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
- include
Deleted 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
- tag
Ids string[] - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- workspace
Ids 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.
- include
Deleted 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
- tag
Ids List<String> - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- workspace
Ids 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<Get
Connections Data> - Id string
- The provider-assigned unique ID for this managed resource.
- Next string
- Previous string
- Include
Deleted 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
- Tag
Ids List<string> - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- Workspace
Ids List<string> - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
- Datas
[]Get
Connections Data - Id string
- The provider-assigned unique ID for this managed resource.
- Next string
- Previous string
- Include
Deleted 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
- Tag
Ids []string - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- Workspace
Ids []string - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
- datas
List<Get
Connections Data> - id String
- The provider-assigned unique ID for this managed resource.
- next String
- previous String
- include
Deleted 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
- tag
Ids List<String> - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- workspace
Ids List<String> - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
- datas
Get
Connections Data[] - id string
- The provider-assigned unique ID for this managed resource.
- next string
- previous string
- include
Deleted 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
- tag
Ids string[] - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- workspace
Ids string[] - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
- datas
Sequence[Get
Connections Data] - 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
- include
Deleted 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
- tag
Ids List<String> - The UUIDs of the tags you wish to list connections for. Empty list will retrieve all connections.
- workspace
Ids List<String> - The UUIDs of the workspaces you wish to list connections for. Empty list will retrieve all allowed workspaces.
Supporting Types
GetConnectionsData
- Configurations
Get
Connections Data Configurations - A list of configured stream options for a connection.
- Connection
Id string - Created
At double - Destination
Id string - Name string
- Namespace
Definition string - Define the location where the data will be stored in the destination
- Namespace
Format string - Non
Breaking stringSchema Updates Behavior - Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
- Prefix string
- Schedule
Get
Connections Data Schedule - schedule for when the the connection should run, per the schedule type
- Source
Id string - Status string
- List<Get
Connections Data Tag> - Workspace
Id string
- Configurations
Get
Connections Data Configurations - A list of configured stream options for a connection.
- Connection
Id string - Created
At float64 - Destination
Id string - Name string
- Namespace
Definition string - Define the location where the data will be stored in the destination
- Namespace
Format string - Non
Breaking stringSchema Updates Behavior - Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
- Prefix string
- Schedule
Get
Connections Data Schedule - schedule for when the the connection should run, per the schedule type
- Source
Id string - Status string
- []Get
Connections Data Tag - Workspace
Id string
- configurations
Get
Connections Data Configurations - A list of configured stream options for a connection.
- connection
Id String - created
At Double - destination
Id String - name String
- namespace
Definition String - Define the location where the data will be stored in the destination
- namespace
Format String - non
Breaking StringSchema Updates Behavior - Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
- prefix String
- schedule
Get
Connections Data Schedule - schedule for when the the connection should run, per the schedule type
- source
Id String - status String
- List<Get
Connections Data Tag> - workspace
Id String
- configurations
Get
Connections Data Configurations - A list of configured stream options for a connection.
- connection
Id string - created
At number - destination
Id string - name string
- namespace
Definition string - Define the location where the data will be stored in the destination
- namespace
Format string - non
Breaking stringSchema Updates Behavior - Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
- prefix string
- schedule
Get
Connections Data Schedule - schedule for when the the connection should run, per the schedule type
- source
Id string - status string
- Get
Connections Data Tag[] - workspace
Id string
- configurations
Get
Connections Data Configurations - 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_ strschema_ updates_ behavior - Set how Airbyte handles syncs when it detects a non-breaking schema change in the source
- prefix str
- schedule
Get
Connections Data Schedule - schedule for when the the connection should run, per the schedule type
- source_
id str - status str
- Sequence[Get
Connections Data Tag] - workspace_
id str
- configurations Property Map
- A list of configured stream options for a connection.
- connection
Id String - created
At Number - destination
Id String - name String
- namespace
Definition String - Define the location where the data will be stored in the destination
- namespace
Format String - non
Breaking StringSchema Updates Behavior - 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
- source
Id String - status String
- List<Property Map>
- workspace
Id String
GetConnectionsDataConfigurations
GetConnectionsDataConfigurationsStream
- Cursor
Fields 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
isincremental
unless there is a default. - Destination
Object stringName - 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
List<Get
Connections Data Configurations Stream Mapper> - Mappers that should be applied to the stream before writing to the destination.
- Name string
- Namespace string
- Namespace of the stream.
- Primary
Keys 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. - Selected
Fields List<GetConnections Data Configurations Stream Selected Field> - Paths to the fields that will be included in the configured catalog.
- Sync
Mode string
- Cursor
Fields []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
isincremental
unless there is a default. - Destination
Object stringName - 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
[]Get
Connections Data Configurations Stream Mapper - Mappers that should be applied to the stream before writing to the destination.
- Name string
- Namespace string
- Namespace of the stream.
- Primary
Keys [][]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. - Selected
Fields []GetConnections Data Configurations Stream Selected Field - Paths to the fields that will be included in the configured catalog.
- Sync
Mode string
- cursor
Fields 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
isincremental
unless there is a default. - destination
Object StringName - The name of the destination object that this stream will be written to, used for data activation destinations.
- include
Files Boolean - Whether to move raw files from the source to the destination during the sync.
- mappers
List<Get
Connections Data Configurations Stream Mapper> - Mappers that should be applied to the stream before writing to the destination.
- name String
- namespace String
- Namespace of the stream.
- primary
Keys 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. - selected
Fields List<GetConnections Data Configurations Stream Selected Field> - Paths to the fields that will be included in the configured catalog.
- sync
Mode String
- cursor
Fields 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
isincremental
unless there is a default. - destination
Object stringName - The name of the destination object that this stream will be written to, used for data activation destinations.
- include
Files boolean - Whether to move raw files from the source to the destination during the sync.
- mappers
Get
Connections Data Configurations Stream Mapper[] - Mappers that should be applied to the stream before writing to the destination.
- name string
- namespace string
- Namespace of the stream.
- primary
Keys 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. - selected
Fields GetConnections Data Configurations Stream Selected Field[] - Paths to the fields that will be included in the configured catalog.
- sync
Mode 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
isincremental
unless there is a default. - destination_
object_ strname - 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[Get
Connections Data Configurations Stream Mapper] - 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[GetConnections Data Configurations Stream Selected Field] - Paths to the fields that will be included in the configured catalog.
- sync_
mode str
- cursor
Fields 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
isincremental
unless there is a default. - destination
Object StringName - The name of the destination object that this stream will be written to, used for data activation destinations.
- include
Files 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.
- primary
Keys 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. - selected
Fields List<Property Map> - Paths to the fields that will be included in the configured catalog.
- sync
Mode String
GetConnectionsDataConfigurationsStreamMapper
- Id string
- Mapper
Configuration GetConnections Data Configurations Stream Mapper Mapper Configuration - The values required to configure the mapper.
- Type string
- Id string
- Mapper
Configuration GetConnections Data Configurations Stream Mapper Mapper Configuration - The values required to configure the mapper.
- Type string
- id String
- mapper
Configuration GetConnections Data Configurations Stream Mapper Mapper Configuration - The values required to configure the mapper.
- type String
- id string
- mapper
Configuration GetConnections Data Configurations Stream Mapper Mapper Configuration - The values required to configure the mapper.
- type string
- id str
- mapper_
configuration GetConnections Data Configurations Stream Mapper Mapper Configuration - The values required to configure the mapper.
- type str
- id String
- mapper
Configuration Property Map - The values required to configure the mapper.
- type String
GetConnectionsDataConfigurationsStreamMapperMapperConfiguration
- Encryption
Get
Connections Data Configurations Stream Mapper Mapper Configuration Encryption - Field
Renaming GetConnections Data Configurations Stream Mapper Mapper Configuration Field Renaming - Hashing
Get
Connections Data Configurations Stream Mapper Mapper Configuration Hashing - Row
Filtering GetConnections Data Configurations Stream Mapper Mapper Configuration Row Filtering
- Encryption
Get
Connections Data Configurations Stream Mapper Mapper Configuration Encryption - Field
Renaming GetConnections Data Configurations Stream Mapper Mapper Configuration Field Renaming - Hashing
Get
Connections Data Configurations Stream Mapper Mapper Configuration Hashing - Row
Filtering GetConnections Data Configurations Stream Mapper Mapper Configuration Row Filtering
- encryption
Get
Connections Data Configurations Stream Mapper Mapper Configuration Encryption - field
Renaming GetConnections Data Configurations Stream Mapper Mapper Configuration Field Renaming - hashing
Get
Connections Data Configurations Stream Mapper Mapper Configuration Hashing - row
Filtering GetConnections Data Configurations Stream Mapper Mapper Configuration Row Filtering
- encryption
Get
Connections Data Configurations Stream Mapper Mapper Configuration Encryption - field
Renaming GetConnections Data Configurations Stream Mapper Mapper Configuration Field Renaming - hashing
Get
Connections Data Configurations Stream Mapper Mapper Configuration Hashing - row
Filtering GetConnections Data Configurations Stream Mapper Mapper Configuration Row Filtering
- encryption
Get
Connections Data Configurations Stream Mapper Mapper Configuration Encryption - field_
renaming GetConnections Data Configurations Stream Mapper Mapper Configuration Field Renaming - hashing
Get
Connections Data Configurations Stream Mapper Mapper Configuration Hashing - row_
filtering GetConnections Data Configurations Stream Mapper Mapper Configuration Row Filtering
GetConnectionsDataConfigurationsStreamMapperMapperConfigurationEncryption
GetConnectionsDataConfigurationsStreamMapperMapperConfigurationEncryptionAes
- Algorithm string
- Field
Name stringSuffix - Key string
- Mode string
- Padding string
- Target
Field string
- Algorithm string
- Field
Name stringSuffix - Key string
- Mode string
- Padding string
- Target
Field string
- algorithm String
- field
Name StringSuffix - key String
- mode String
- padding String
- target
Field String
- algorithm string
- field
Name stringSuffix - key string
- mode string
- padding string
- target
Field string
- algorithm str
- field_
name_ strsuffix - key str
- mode str
- padding str
- target_
field str
- algorithm String
- field
Name StringSuffix - key String
- mode String
- padding String
- target
Field String
GetConnectionsDataConfigurationsStreamMapperMapperConfigurationEncryptionRsa
- Algorithm string
- Field
Name stringSuffix - Public
Key string - Target
Field string
- Algorithm string
- Field
Name stringSuffix - Public
Key string - Target
Field string
- algorithm String
- field
Name StringSuffix - public
Key String - target
Field String
- algorithm string
- field
Name stringSuffix - public
Key string - target
Field string
- algorithm str
- field_
name_ strsuffix - public_
key str - target_
field str
- algorithm String
- field
Name StringSuffix - public
Key String - target
Field String
GetConnectionsDataConfigurationsStreamMapperMapperConfigurationFieldRenaming
- New
Field stringName - The new name for the field after renaming.
- Original
Field stringName - The current name of the field to rename.
- New
Field stringName - The new name for the field after renaming.
- Original
Field stringName - The current name of the field to rename.
- new
Field StringName - The new name for the field after renaming.
- original
Field StringName - The current name of the field to rename.
- new
Field stringName - The new name for the field after renaming.
- original
Field stringName - The current name of the field to rename.
- new_
field_ strname - The new name for the field after renaming.
- original_
field_ strname - The current name of the field to rename.
- new
Field StringName - The new name for the field after renaming.
- original
Field StringName - The current name of the field to rename.
GetConnectionsDataConfigurationsStreamMapperMapperConfigurationHashing
- Field
Name stringSuffix - The suffix to append to the field name after hashing.
- Method string
- The hashing algorithm to use.
- Target
Field string - The name of the field to be hashed.
- Field
Name stringSuffix - The suffix to append to the field name after hashing.
- Method string
- The hashing algorithm to use.
- Target
Field string - The name of the field to be hashed.
- field
Name StringSuffix - The suffix to append to the field name after hashing.
- method String
- The hashing algorithm to use.
- target
Field String - The name of the field to be hashed.
- field
Name stringSuffix - The suffix to append to the field name after hashing.
- method string
- The hashing algorithm to use.
- target
Field string - The name of the field to be hashed.
- field_
name_ strsuffix - 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.
- field
Name StringSuffix - The suffix to append to the field name after hashing.
- method String
- The hashing algorithm to use.
- target
Field 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
- Field
Paths List<string>
- Field
Paths []string
- field
Paths List<String>
- field
Paths string[]
- field_
paths Sequence[str]
- field
Paths List<String>
GetConnectionsDataSchedule
- Basic
Timing string - Cron
Expression string - Schedule
Type string
- Basic
Timing string - Cron
Expression string - Schedule
Type string
- basic
Timing String - cron
Expression String - schedule
Type String
- basic
Timing string - cron
Expression string - schedule
Type string
- basic_
timing str - cron_
expression str - schedule_
type str
- basic
Timing String - cron
Expression String - schedule
Type String
GetConnectionsDataTag
- Color string
- Name string
- Tag
Id string - Workspace
Id string
- Color string
- Name string
- Tag
Id string - Workspace
Id string
- color String
- name String
- tag
Id String - workspace
Id String
- color string
- name string
- tag
Id string - workspace
Id string
- color str
- name str
- tag_
id str - workspace_
id str
- color String
- name String
- tag
Id String - workspace
Id String
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.