1. Packages
  2. Fivetran Provider
  3. API Docs
  4. ConnectorSchemaConfig
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

fivetran.ConnectorSchemaConfig

Explore with Pulumi AI

fivetran logo
fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran

    Import

    You don’t need to import this resource as it is synthetic (doesn’t create new instances in upstream).

    Create ConnectorSchemaConfig Resource

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

    Constructor syntax

    new ConnectorSchemaConfig(name: string, args: ConnectorSchemaConfigArgs, opts?: CustomResourceOptions);
    @overload
    def ConnectorSchemaConfig(resource_name: str,
                              args: ConnectorSchemaConfigArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ConnectorSchemaConfig(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              connector_id: Optional[str] = None,
                              schema: Optional[Sequence[ConnectorSchemaConfigSchemaArgs]] = None,
                              schema_change_handling: Optional[str] = None,
                              schemas: Optional[Mapping[str, ConnectorSchemaConfigSchemasArgs]] = None,
                              schemas_json: Optional[str] = None,
                              timeouts: Optional[ConnectorSchemaConfigTimeoutsArgs] = None,
                              validation_level: Optional[str] = None)
    func NewConnectorSchemaConfig(ctx *Context, name string, args ConnectorSchemaConfigArgs, opts ...ResourceOption) (*ConnectorSchemaConfig, error)
    public ConnectorSchemaConfig(string name, ConnectorSchemaConfigArgs args, CustomResourceOptions? opts = null)
    public ConnectorSchemaConfig(String name, ConnectorSchemaConfigArgs args)
    public ConnectorSchemaConfig(String name, ConnectorSchemaConfigArgs args, CustomResourceOptions options)
    
    type: fivetran:ConnectorSchemaConfig
    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 ConnectorSchemaConfigArgs
    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 ConnectorSchemaConfigArgs
    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 ConnectorSchemaConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectorSchemaConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectorSchemaConfigArgs
    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 connectorSchemaConfigResource = new Fivetran.ConnectorSchemaConfig("connectorSchemaConfigResource", new()
    {
        ConnectorId = "string",
        SchemaChangeHandling = "string",
        Schemas = 
        {
            { "string", new Fivetran.Inputs.ConnectorSchemaConfigSchemasArgs
            {
                Enabled = false,
                Tables = 
                {
                    { "string", new Fivetran.Inputs.ConnectorSchemaConfigSchemasTablesArgs
                    {
                        Columns = 
                        {
                            { "string", new Fivetran.Inputs.ConnectorSchemaConfigSchemasTablesColumnsArgs
                            {
                                Enabled = false,
                                Hashed = false,
                                IsPrimaryKey = false,
                            } },
                        },
                        Enabled = false,
                        SyncMode = "string",
                    } },
                },
            } },
        },
        SchemasJson = "string",
        Timeouts = new Fivetran.Inputs.ConnectorSchemaConfigTimeoutsArgs
        {
            Create = "string",
            Read = "string",
            Update = "string",
        },
        ValidationLevel = "string",
    });
    
    example, err := fivetran.NewConnectorSchemaConfig(ctx, "connectorSchemaConfigResource", &fivetran.ConnectorSchemaConfigArgs{
    ConnectorId: pulumi.String("string"),
    SchemaChangeHandling: pulumi.String("string"),
    Schemas: .ConnectorSchemaConfigSchemasMap{
    "string": &.ConnectorSchemaConfigSchemasArgs{
    Enabled: pulumi.Bool(false),
    Tables: .ConnectorSchemaConfigSchemasTablesMap{
    "string": &.ConnectorSchemaConfigSchemasTablesArgs{
    Columns: .ConnectorSchemaConfigSchemasTablesColumnsMap{
    "string": &.ConnectorSchemaConfigSchemasTablesColumnsArgs{
    Enabled: pulumi.Bool(false),
    Hashed: pulumi.Bool(false),
    IsPrimaryKey: pulumi.Bool(false),
    },
    },
    Enabled: pulumi.Bool(false),
    SyncMode: pulumi.String("string"),
    },
    },
    },
    },
    SchemasJson: pulumi.String("string"),
    Timeouts: &.ConnectorSchemaConfigTimeoutsArgs{
    Create: pulumi.String("string"),
    Read: pulumi.String("string"),
    Update: pulumi.String("string"),
    },
    ValidationLevel: pulumi.String("string"),
    })
    
    var connectorSchemaConfigResource = new ConnectorSchemaConfig("connectorSchemaConfigResource", ConnectorSchemaConfigArgs.builder()
        .connectorId("string")
        .schemaChangeHandling("string")
        .schemas(Map.of("string", Map.ofEntries(
            Map.entry("enabled", false),
            Map.entry("tables", Map.of("string", Map.ofEntries(
                Map.entry("columns", Map.of("string", Map.ofEntries(
                    Map.entry("enabled", false),
                    Map.entry("hashed", false),
                    Map.entry("isPrimaryKey", false)
                ))),
                Map.entry("enabled", false),
                Map.entry("syncMode", "string")
            )))
        )))
        .schemasJson("string")
        .timeouts(ConnectorSchemaConfigTimeoutsArgs.builder()
            .create("string")
            .read("string")
            .update("string")
            .build())
        .validationLevel("string")
        .build());
    
    connector_schema_config_resource = fivetran.ConnectorSchemaConfig("connectorSchemaConfigResource",
        connector_id="string",
        schema_change_handling="string",
        schemas={
            "string": {
                "enabled": False,
                "tables": {
                    "string": {
                        "columns": {
                            "string": {
                                "enabled": False,
                                "hashed": False,
                                "is_primary_key": False,
                            },
                        },
                        "enabled": False,
                        "sync_mode": "string",
                    },
                },
            },
        },
        schemas_json="string",
        timeouts={
            "create": "string",
            "read": "string",
            "update": "string",
        },
        validation_level="string")
    
    const connectorSchemaConfigResource = new fivetran.ConnectorSchemaConfig("connectorSchemaConfigResource", {
        connectorId: "string",
        schemaChangeHandling: "string",
        schemas: {
            string: {
                enabled: false,
                tables: {
                    string: {
                        columns: {
                            string: {
                                enabled: false,
                                hashed: false,
                                isPrimaryKey: false,
                            },
                        },
                        enabled: false,
                        syncMode: "string",
                    },
                },
            },
        },
        schemasJson: "string",
        timeouts: {
            create: "string",
            read: "string",
            update: "string",
        },
        validationLevel: "string",
    });
    
    type: fivetran:ConnectorSchemaConfig
    properties:
        connectorId: string
        schemaChangeHandling: string
        schemas:
            string:
                enabled: false
                tables:
                    string:
                        columns:
                            string:
                                enabled: false
                                hashed: false
                                isPrimaryKey: false
                        enabled: false
                        syncMode: string
        schemasJson: string
        timeouts:
            create: string
            read: string
            update: string
        validationLevel: string
    

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

    ConnectorId string
    The unique identifier for the connector within the Fivetran system.
    Schema List<ConnectorSchemaConfigSchema>

    Deprecated: Deprecated

    SchemaChangeHandling string
    The value specifying how new source data is handled.
    Schemas Dictionary<string, ConnectorSchemaConfigSchemasArgs>
    Map of schema configurations.
    SchemasJson string
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    Timeouts ConnectorSchemaConfigTimeouts
    ValidationLevel string
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    ConnectorId string
    The unique identifier for the connector within the Fivetran system.
    Schema []ConnectorSchemaConfigSchemaArgs

    Deprecated: Deprecated

    SchemaChangeHandling string
    The value specifying how new source data is handled.
    Schemas map[string]ConnectorSchemaConfigSchemasArgs
    Map of schema configurations.
    SchemasJson string
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    Timeouts ConnectorSchemaConfigTimeoutsArgs
    ValidationLevel string
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connectorId String
    The unique identifier for the connector within the Fivetran system.
    schema List<ConnectorSchemaConfigSchema>

    Deprecated: Deprecated

    schemaChangeHandling String
    The value specifying how new source data is handled.
    schemas Map<String,ConnectorSchemaConfigSchemasArgs>
    Map of schema configurations.
    schemasJson String
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts ConnectorSchemaConfigTimeouts
    validationLevel String
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connectorId string
    The unique identifier for the connector within the Fivetran system.
    schema ConnectorSchemaConfigSchema[]

    Deprecated: Deprecated

    schemaChangeHandling string
    The value specifying how new source data is handled.
    schemas {[key: string]: ConnectorSchemaConfigSchemasArgs}
    Map of schema configurations.
    schemasJson string
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts ConnectorSchemaConfigTimeouts
    validationLevel string
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connector_id str
    The unique identifier for the connector within the Fivetran system.
    schema Sequence[ConnectorSchemaConfigSchemaArgs]

    Deprecated: Deprecated

    schema_change_handling str
    The value specifying how new source data is handled.
    schemas Mapping[str, ConnectorSchemaConfigSchemasArgs]
    Map of schema configurations.
    schemas_json str
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts ConnectorSchemaConfigTimeoutsArgs
    validation_level str
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connectorId String
    The unique identifier for the connector within the Fivetran system.
    schema List<Property Map>

    Deprecated: Deprecated

    schemaChangeHandling String
    The value specifying how new source data is handled.
    schemas Map<Property Map>
    Map of schema configurations.
    schemasJson String
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts Property Map
    validationLevel String
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ConnectorSchemaConfig resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ConnectorSchemaConfig Resource

    Get an existing ConnectorSchemaConfig 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?: ConnectorSchemaConfigState, opts?: CustomResourceOptions): ConnectorSchemaConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connector_id: Optional[str] = None,
            schema: Optional[Sequence[ConnectorSchemaConfigSchemaArgs]] = None,
            schema_change_handling: Optional[str] = None,
            schemas: Optional[Mapping[str, ConnectorSchemaConfigSchemasArgs]] = None,
            schemas_json: Optional[str] = None,
            timeouts: Optional[ConnectorSchemaConfigTimeoutsArgs] = None,
            validation_level: Optional[str] = None) -> ConnectorSchemaConfig
    func GetConnectorSchemaConfig(ctx *Context, name string, id IDInput, state *ConnectorSchemaConfigState, opts ...ResourceOption) (*ConnectorSchemaConfig, error)
    public static ConnectorSchemaConfig Get(string name, Input<string> id, ConnectorSchemaConfigState? state, CustomResourceOptions? opts = null)
    public static ConnectorSchemaConfig get(String name, Output<String> id, ConnectorSchemaConfigState state, CustomResourceOptions options)
    resources:  _:    type: fivetran:ConnectorSchemaConfig    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:
    ConnectorId string
    The unique identifier for the connector within the Fivetran system.
    Schema List<ConnectorSchemaConfigSchema>

    Deprecated: Deprecated

    SchemaChangeHandling string
    The value specifying how new source data is handled.
    Schemas Dictionary<string, ConnectorSchemaConfigSchemasArgs>
    Map of schema configurations.
    SchemasJson string
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    Timeouts ConnectorSchemaConfigTimeouts
    ValidationLevel string
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    ConnectorId string
    The unique identifier for the connector within the Fivetran system.
    Schema []ConnectorSchemaConfigSchemaArgs

    Deprecated: Deprecated

    SchemaChangeHandling string
    The value specifying how new source data is handled.
    Schemas map[string]ConnectorSchemaConfigSchemasArgs
    Map of schema configurations.
    SchemasJson string
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    Timeouts ConnectorSchemaConfigTimeoutsArgs
    ValidationLevel string
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connectorId String
    The unique identifier for the connector within the Fivetran system.
    schema List<ConnectorSchemaConfigSchema>

    Deprecated: Deprecated

    schemaChangeHandling String
    The value specifying how new source data is handled.
    schemas Map<String,ConnectorSchemaConfigSchemasArgs>
    Map of schema configurations.
    schemasJson String
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts ConnectorSchemaConfigTimeouts
    validationLevel String
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connectorId string
    The unique identifier for the connector within the Fivetran system.
    schema ConnectorSchemaConfigSchema[]

    Deprecated: Deprecated

    schemaChangeHandling string
    The value specifying how new source data is handled.
    schemas {[key: string]: ConnectorSchemaConfigSchemasArgs}
    Map of schema configurations.
    schemasJson string
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts ConnectorSchemaConfigTimeouts
    validationLevel string
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connector_id str
    The unique identifier for the connector within the Fivetran system.
    schema Sequence[ConnectorSchemaConfigSchemaArgs]

    Deprecated: Deprecated

    schema_change_handling str
    The value specifying how new source data is handled.
    schemas Mapping[str, ConnectorSchemaConfigSchemasArgs]
    Map of schema configurations.
    schemas_json str
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts ConnectorSchemaConfigTimeoutsArgs
    validation_level str
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.
    connectorId String
    The unique identifier for the connector within the Fivetran system.
    schema List<Property Map>

    Deprecated: Deprecated

    schemaChangeHandling String
    The value specifying how new source data is handled.
    schemas Map<Property Map>
    Map of schema configurations.
    schemasJson String
    Schema settings in Json format, following Fivetran API endpoint contract for schemas field (a map of schemas).
    timeouts Property Map
    validationLevel String
    The value defines validation method. - NONE: no validation, any configuration accepted. - TABLES: validate table names, fail on attempt to configure non-existing schemas/tables. - COLUMNS: validate the whole schema config including column names. The resource will try to fetch columns for every configured table and verify column names.

    Supporting Types

    ConnectorSchemaConfigSchema, ConnectorSchemaConfigSchemaArgs

    Name string
    The schema name within your destination in accordance with Fivetran conventional rules.
    Enabled bool
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    Tables List<ConnectorSchemaConfigSchemaTable>
    Name string
    The schema name within your destination in accordance with Fivetran conventional rules.
    Enabled bool
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    Tables []ConnectorSchemaConfigSchemaTable
    name String
    The schema name within your destination in accordance with Fivetran conventional rules.
    enabled Boolean
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables List<ConnectorSchemaConfigSchemaTable>
    name string
    The schema name within your destination in accordance with Fivetran conventional rules.
    enabled boolean
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables ConnectorSchemaConfigSchemaTable[]
    name str
    The schema name within your destination in accordance with Fivetran conventional rules.
    enabled bool
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables Sequence[ConnectorSchemaConfigSchemaTable]
    name String
    The schema name within your destination in accordance with Fivetran conventional rules.
    enabled Boolean
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables List<Property Map>

    ConnectorSchemaConfigSchemaTable, ConnectorSchemaConfigSchemaTableArgs

    Name string
    The table name within your destination in accordance with Fivetran conventional rules.
    Columns List<ConnectorSchemaConfigSchemaTableColumn>
    Enabled bool
    The boolean value specifying whether the sync of table into the destination is enabled.
    SyncMode string
    This field appears in the response if the connector supports switching sync modes for tables.
    Name string
    The table name within your destination in accordance with Fivetran conventional rules.
    Columns []ConnectorSchemaConfigSchemaTableColumn
    Enabled bool
    The boolean value specifying whether the sync of table into the destination is enabled.
    SyncMode string
    This field appears in the response if the connector supports switching sync modes for tables.
    name String
    The table name within your destination in accordance with Fivetran conventional rules.
    columns List<ConnectorSchemaConfigSchemaTableColumn>
    enabled Boolean
    The boolean value specifying whether the sync of table into the destination is enabled.
    syncMode String
    This field appears in the response if the connector supports switching sync modes for tables.
    name string
    The table name within your destination in accordance with Fivetran conventional rules.
    columns ConnectorSchemaConfigSchemaTableColumn[]
    enabled boolean
    The boolean value specifying whether the sync of table into the destination is enabled.
    syncMode string
    This field appears in the response if the connector supports switching sync modes for tables.
    name str
    The table name within your destination in accordance with Fivetran conventional rules.
    columns Sequence[ConnectorSchemaConfigSchemaTableColumn]
    enabled bool
    The boolean value specifying whether the sync of table into the destination is enabled.
    sync_mode str
    This field appears in the response if the connector supports switching sync modes for tables.
    name String
    The table name within your destination in accordance with Fivetran conventional rules.
    columns List<Property Map>
    enabled Boolean
    The boolean value specifying whether the sync of table into the destination is enabled.
    syncMode String
    This field appears in the response if the connector supports switching sync modes for tables.

    ConnectorSchemaConfigSchemaTableColumn, ConnectorSchemaConfigSchemaTableColumnArgs

    Name string
    The column name within your destination in accordance with Fivetran conventional rules.
    Enabled bool
    The boolean value specifying whether the sync of the column into the destination is enabled.
    Hashed bool
    The boolean value specifying whether a column should be hashed.
    IsPrimaryKey bool
    Name string
    The column name within your destination in accordance with Fivetran conventional rules.
    Enabled bool
    The boolean value specifying whether the sync of the column into the destination is enabled.
    Hashed bool
    The boolean value specifying whether a column should be hashed.
    IsPrimaryKey bool
    name String
    The column name within your destination in accordance with Fivetran conventional rules.
    enabled Boolean
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed Boolean
    The boolean value specifying whether a column should be hashed.
    isPrimaryKey Boolean
    name string
    The column name within your destination in accordance with Fivetran conventional rules.
    enabled boolean
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed boolean
    The boolean value specifying whether a column should be hashed.
    isPrimaryKey boolean
    name str
    The column name within your destination in accordance with Fivetran conventional rules.
    enabled bool
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed bool
    The boolean value specifying whether a column should be hashed.
    is_primary_key bool
    name String
    The column name within your destination in accordance with Fivetran conventional rules.
    enabled Boolean
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed Boolean
    The boolean value specifying whether a column should be hashed.
    isPrimaryKey Boolean

    ConnectorSchemaConfigSchemas, ConnectorSchemaConfigSchemasArgs

    Enabled bool
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    Tables Dictionary<string, ConnectorSchemaConfigSchemasTables>
    Map of table configurations.
    Enabled bool
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    Tables map[string]ConnectorSchemaConfigSchemasTables
    Map of table configurations.
    enabled Boolean
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables Map<String,ConnectorSchemaConfigSchemasTables>
    Map of table configurations.
    enabled boolean
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables {[key: string]: ConnectorSchemaConfigSchemasTables}
    Map of table configurations.
    enabled bool
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables Mapping[str, ConnectorSchemaConfigSchemasTables]
    Map of table configurations.
    enabled Boolean
    The boolean value specifying whether the sync for the schema into the destination is enabled.
    tables Map<Property Map>
    Map of table configurations.

    ConnectorSchemaConfigSchemasTables, ConnectorSchemaConfigSchemasTablesArgs

    Columns Dictionary<string, ConnectorSchemaConfigSchemasTablesColumns>
    Map of table configurations.
    Enabled bool
    The boolean value specifying whether the sync for the table into the destination is enabled.
    SyncMode string
    This field appears in the response if the connector supports switching sync modes for tables.
    Columns map[string]ConnectorSchemaConfigSchemasTablesColumns
    Map of table configurations.
    Enabled bool
    The boolean value specifying whether the sync for the table into the destination is enabled.
    SyncMode string
    This field appears in the response if the connector supports switching sync modes for tables.
    columns Map<String,ConnectorSchemaConfigSchemasTablesColumns>
    Map of table configurations.
    enabled Boolean
    The boolean value specifying whether the sync for the table into the destination is enabled.
    syncMode String
    This field appears in the response if the connector supports switching sync modes for tables.
    columns {[key: string]: ConnectorSchemaConfigSchemasTablesColumns}
    Map of table configurations.
    enabled boolean
    The boolean value specifying whether the sync for the table into the destination is enabled.
    syncMode string
    This field appears in the response if the connector supports switching sync modes for tables.
    columns Mapping[str, ConnectorSchemaConfigSchemasTablesColumns]
    Map of table configurations.
    enabled bool
    The boolean value specifying whether the sync for the table into the destination is enabled.
    sync_mode str
    This field appears in the response if the connector supports switching sync modes for tables.
    columns Map<Property Map>
    Map of table configurations.
    enabled Boolean
    The boolean value specifying whether the sync for the table into the destination is enabled.
    syncMode String
    This field appears in the response if the connector supports switching sync modes for tables.

    ConnectorSchemaConfigSchemasTablesColumns, ConnectorSchemaConfigSchemasTablesColumnsArgs

    Enabled bool
    The boolean value specifying whether the sync of the column into the destination is enabled.
    Hashed bool
    The boolean value specifying whether a column should be hashed.
    IsPrimaryKey bool
    Enabled bool
    The boolean value specifying whether the sync of the column into the destination is enabled.
    Hashed bool
    The boolean value specifying whether a column should be hashed.
    IsPrimaryKey bool
    enabled Boolean
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed Boolean
    The boolean value specifying whether a column should be hashed.
    isPrimaryKey Boolean
    enabled boolean
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed boolean
    The boolean value specifying whether a column should be hashed.
    isPrimaryKey boolean
    enabled bool
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed bool
    The boolean value specifying whether a column should be hashed.
    is_primary_key bool
    enabled Boolean
    The boolean value specifying whether the sync of the column into the destination is enabled.
    hashed Boolean
    The boolean value specifying whether a column should be hashed.
    isPrimaryKey Boolean

    ConnectorSchemaConfigTimeouts, ConnectorSchemaConfigTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Package Details

    Repository
    fivetran fivetran/terraform-provider-fivetran
    License
    Notes
    This Pulumi package is based on the fivetran Terraform Provider.
    fivetran logo
    fivetran 1.6.0 published on Tuesday, Mar 25, 2025 by fivetran