1. Packages
  2. dbt Cloud Provider
  3. API Docs
  4. AccountFeatures
dbt Cloud v1.5.0 published on Thursday, Jan 22, 2026 by Pulumi
dbtcloud logo
dbt Cloud v1.5.0 published on Thursday, Jan 22, 2026 by Pulumi

    Manages dbt Cloud global features at the account level, like Advanced CI. The same feature should not be configured in different resources to avoid conflicts.

    When destroying the resource or removing the value for an attribute, the features status will not be changed. Deactivating features will require applying them wih the value set to false.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dbtcloud from "@pulumi/dbtcloud";
    
    // Manage account-level feature flags in dbt Cloud
    const myFeatures = new dbtcloud.AccountFeatures("my_features", {
        advancedCi: true,
        partialParsing: true,
        repoCaching: true,
        aiFeatures: true,
        catalogIngestion: true,
        explorerAccountUi: true,
        fusionMigrationPermissions: false,
    });
    
    import pulumi
    import pulumi_dbtcloud as dbtcloud
    
    # Manage account-level feature flags in dbt Cloud
    my_features = dbtcloud.AccountFeatures("my_features",
        advanced_ci=True,
        partial_parsing=True,
        repo_caching=True,
        ai_features=True,
        catalog_ingestion=True,
        explorer_account_ui=True,
        fusion_migration_permissions=False)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Manage account-level feature flags in dbt Cloud
    		_, err := dbtcloud.NewAccountFeatures(ctx, "my_features", &dbtcloud.AccountFeaturesArgs{
    			AdvancedCi:                 pulumi.Bool(true),
    			PartialParsing:             pulumi.Bool(true),
    			RepoCaching:                pulumi.Bool(true),
    			AiFeatures:                 pulumi.Bool(true),
    			CatalogIngestion:           pulumi.Bool(true),
    			ExplorerAccountUi:          pulumi.Bool(true),
    			FusionMigrationPermissions: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DbtCloud = Pulumi.DbtCloud;
    
    return await Deployment.RunAsync(() => 
    {
        // Manage account-level feature flags in dbt Cloud
        var myFeatures = new DbtCloud.AccountFeatures("my_features", new()
        {
            AdvancedCi = true,
            PartialParsing = true,
            RepoCaching = true,
            AiFeatures = true,
            CatalogIngestion = true,
            ExplorerAccountUi = true,
            FusionMigrationPermissions = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dbtcloud.AccountFeatures;
    import com.pulumi.dbtcloud.AccountFeaturesArgs;
    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) {
            // Manage account-level feature flags in dbt Cloud
            var myFeatures = new AccountFeatures("myFeatures", AccountFeaturesArgs.builder()
                .advancedCi(true)
                .partialParsing(true)
                .repoCaching(true)
                .aiFeatures(true)
                .catalogIngestion(true)
                .explorerAccountUi(true)
                .fusionMigrationPermissions(false)
                .build());
    
        }
    }
    
    resources:
      # Manage account-level feature flags in dbt Cloud
      myFeatures:
        type: dbtcloud:AccountFeatures
        name: my_features
        properties:
          advancedCi: true
          partialParsing: true
          repoCaching: true # AI features
          aiFeatures: true # Catalog/Explorer features
          catalogIngestion: true
          explorerAccountUi: true # Migration features
          fusionMigrationPermissions: false
    

    Create AccountFeatures Resource

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

    Constructor syntax

    new AccountFeatures(name: string, args?: AccountFeaturesArgs, opts?: CustomResourceOptions);
    @overload
    def AccountFeatures(resource_name: str,
                        args: Optional[AccountFeaturesArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccountFeatures(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        advanced_ci: Optional[bool] = None,
                        ai_features: Optional[bool] = None,
                        catalog_ingestion: Optional[bool] = None,
                        explorer_account_ui: Optional[bool] = None,
                        fusion_migration_permissions: Optional[bool] = None,
                        partial_parsing: Optional[bool] = None,
                        repo_caching: Optional[bool] = None)
    func NewAccountFeatures(ctx *Context, name string, args *AccountFeaturesArgs, opts ...ResourceOption) (*AccountFeatures, error)
    public AccountFeatures(string name, AccountFeaturesArgs? args = null, CustomResourceOptions? opts = null)
    public AccountFeatures(String name, AccountFeaturesArgs args)
    public AccountFeatures(String name, AccountFeaturesArgs args, CustomResourceOptions options)
    
    type: dbtcloud:AccountFeatures
    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 AccountFeaturesArgs
    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 AccountFeaturesArgs
    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 AccountFeaturesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountFeaturesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountFeaturesArgs
    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 accountFeaturesResource = new DbtCloud.AccountFeatures("accountFeaturesResource", new()
    {
        AdvancedCi = false,
        AiFeatures = false,
        CatalogIngestion = false,
        ExplorerAccountUi = false,
        FusionMigrationPermissions = false,
        PartialParsing = false,
        RepoCaching = false,
    });
    
    example, err := dbtcloud.NewAccountFeatures(ctx, "accountFeaturesResource", &dbtcloud.AccountFeaturesArgs{
    	AdvancedCi:                 pulumi.Bool(false),
    	AiFeatures:                 pulumi.Bool(false),
    	CatalogIngestion:           pulumi.Bool(false),
    	ExplorerAccountUi:          pulumi.Bool(false),
    	FusionMigrationPermissions: pulumi.Bool(false),
    	PartialParsing:             pulumi.Bool(false),
    	RepoCaching:                pulumi.Bool(false),
    })
    
    var accountFeaturesResource = new AccountFeatures("accountFeaturesResource", AccountFeaturesArgs.builder()
        .advancedCi(false)
        .aiFeatures(false)
        .catalogIngestion(false)
        .explorerAccountUi(false)
        .fusionMigrationPermissions(false)
        .partialParsing(false)
        .repoCaching(false)
        .build());
    
    account_features_resource = dbtcloud.AccountFeatures("accountFeaturesResource",
        advanced_ci=False,
        ai_features=False,
        catalog_ingestion=False,
        explorer_account_ui=False,
        fusion_migration_permissions=False,
        partial_parsing=False,
        repo_caching=False)
    
    const accountFeaturesResource = new dbtcloud.AccountFeatures("accountFeaturesResource", {
        advancedCi: false,
        aiFeatures: false,
        catalogIngestion: false,
        explorerAccountUi: false,
        fusionMigrationPermissions: false,
        partialParsing: false,
        repoCaching: false,
    });
    
    type: dbtcloud:AccountFeatures
    properties:
        advancedCi: false
        aiFeatures: false
        catalogIngestion: false
        explorerAccountUi: false
        fusionMigrationPermissions: false
        partialParsing: false
        repoCaching: false
    

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

    AdvancedCi bool
    Whether advanced CI is enabled.
    AiFeatures bool
    Whether AI features are enabled.
    CatalogIngestion bool
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    ExplorerAccountUi bool
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    FusionMigrationPermissions bool
    Whether permissions for accounts migrating to Fusion are enabled.
    PartialParsing bool
    Whether partial parsing is enabled.
    RepoCaching bool
    Whether repository caching is enabled.
    AdvancedCi bool
    Whether advanced CI is enabled.
    AiFeatures bool
    Whether AI features are enabled.
    CatalogIngestion bool
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    ExplorerAccountUi bool
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    FusionMigrationPermissions bool
    Whether permissions for accounts migrating to Fusion are enabled.
    PartialParsing bool
    Whether partial parsing is enabled.
    RepoCaching bool
    Whether repository caching is enabled.
    advancedCi Boolean
    Whether advanced CI is enabled.
    aiFeatures Boolean
    Whether AI features are enabled.
    catalogIngestion Boolean
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorerAccountUi Boolean
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusionMigrationPermissions Boolean
    Whether permissions for accounts migrating to Fusion are enabled.
    partialParsing Boolean
    Whether partial parsing is enabled.
    repoCaching Boolean
    Whether repository caching is enabled.
    advancedCi boolean
    Whether advanced CI is enabled.
    aiFeatures boolean
    Whether AI features are enabled.
    catalogIngestion boolean
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorerAccountUi boolean
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusionMigrationPermissions boolean
    Whether permissions for accounts migrating to Fusion are enabled.
    partialParsing boolean
    Whether partial parsing is enabled.
    repoCaching boolean
    Whether repository caching is enabled.
    advanced_ci bool
    Whether advanced CI is enabled.
    ai_features bool
    Whether AI features are enabled.
    catalog_ingestion bool
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorer_account_ui bool
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusion_migration_permissions bool
    Whether permissions for accounts migrating to Fusion are enabled.
    partial_parsing bool
    Whether partial parsing is enabled.
    repo_caching bool
    Whether repository caching is enabled.
    advancedCi Boolean
    Whether advanced CI is enabled.
    aiFeatures Boolean
    Whether AI features are enabled.
    catalogIngestion Boolean
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorerAccountUi Boolean
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusionMigrationPermissions Boolean
    Whether permissions for accounts migrating to Fusion are enabled.
    partialParsing Boolean
    Whether partial parsing is enabled.
    repoCaching Boolean
    Whether repository caching is enabled.

    Outputs

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

    Get an existing AccountFeatures 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?: AccountFeaturesState, opts?: CustomResourceOptions): AccountFeatures
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            advanced_ci: Optional[bool] = None,
            ai_features: Optional[bool] = None,
            catalog_ingestion: Optional[bool] = None,
            explorer_account_ui: Optional[bool] = None,
            fusion_migration_permissions: Optional[bool] = None,
            partial_parsing: Optional[bool] = None,
            repo_caching: Optional[bool] = None) -> AccountFeatures
    func GetAccountFeatures(ctx *Context, name string, id IDInput, state *AccountFeaturesState, opts ...ResourceOption) (*AccountFeatures, error)
    public static AccountFeatures Get(string name, Input<string> id, AccountFeaturesState? state, CustomResourceOptions? opts = null)
    public static AccountFeatures get(String name, Output<String> id, AccountFeaturesState state, CustomResourceOptions options)
    resources:  _:    type: dbtcloud:AccountFeatures    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:
    AdvancedCi bool
    Whether advanced CI is enabled.
    AiFeatures bool
    Whether AI features are enabled.
    CatalogIngestion bool
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    ExplorerAccountUi bool
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    FusionMigrationPermissions bool
    Whether permissions for accounts migrating to Fusion are enabled.
    PartialParsing bool
    Whether partial parsing is enabled.
    RepoCaching bool
    Whether repository caching is enabled.
    AdvancedCi bool
    Whether advanced CI is enabled.
    AiFeatures bool
    Whether AI features are enabled.
    CatalogIngestion bool
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    ExplorerAccountUi bool
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    FusionMigrationPermissions bool
    Whether permissions for accounts migrating to Fusion are enabled.
    PartialParsing bool
    Whether partial parsing is enabled.
    RepoCaching bool
    Whether repository caching is enabled.
    advancedCi Boolean
    Whether advanced CI is enabled.
    aiFeatures Boolean
    Whether AI features are enabled.
    catalogIngestion Boolean
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorerAccountUi Boolean
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusionMigrationPermissions Boolean
    Whether permissions for accounts migrating to Fusion are enabled.
    partialParsing Boolean
    Whether partial parsing is enabled.
    repoCaching Boolean
    Whether repository caching is enabled.
    advancedCi boolean
    Whether advanced CI is enabled.
    aiFeatures boolean
    Whether AI features are enabled.
    catalogIngestion boolean
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorerAccountUi boolean
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusionMigrationPermissions boolean
    Whether permissions for accounts migrating to Fusion are enabled.
    partialParsing boolean
    Whether partial parsing is enabled.
    repoCaching boolean
    Whether repository caching is enabled.
    advanced_ci bool
    Whether advanced CI is enabled.
    ai_features bool
    Whether AI features are enabled.
    catalog_ingestion bool
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorer_account_ui bool
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusion_migration_permissions bool
    Whether permissions for accounts migrating to Fusion are enabled.
    partial_parsing bool
    Whether partial parsing is enabled.
    repo_caching bool
    Whether repository caching is enabled.
    advancedCi Boolean
    Whether advanced CI is enabled.
    aiFeatures Boolean
    Whether AI features are enabled.
    catalogIngestion Boolean
    Whether catalog ingestion (external metadata ingestion into Catalog/Explorer Enterprise) is enabled.
    explorerAccountUi Boolean
    Whether the new Catalog navigation UI is enabled (default true for new accounts).
    fusionMigrationPermissions Boolean
    Whether permissions for accounts migrating to Fusion are enabled.
    partialParsing Boolean
    Whether partial parsing is enabled.
    repoCaching Boolean
    Whether repository caching is enabled.

    Package Details

    Repository
    dbtcloud pulumi/pulumi-dbtcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dbtcloud Terraform Provider.
    dbtcloud logo
    dbt Cloud v1.5.0 published on Thursday, Jan 22, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate