1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. storage
  5. ControlProjectIntelligenceConfig
Google Cloud v8.29.0 published on Thursday, May 1, 2025 by Pulumi

gcp.storage.ControlProjectIntelligenceConfig

Explore with Pulumi AI

gcp logo
Google Cloud v8.29.0 published on Thursday, May 1, 2025 by Pulumi

    Example Usage

    Storage Control Project Intelligence Config Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.storage.ControlProjectIntelligenceConfig("example", {
        name: "test-project",
        editionConfig: "TRIAL",
        filter: {
            includedCloudStorageBuckets: {
                bucketIdRegexes: [
                    "test-id-1*",
                    "test-id-2*",
                ],
            },
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.storage.ControlProjectIntelligenceConfig("example",
        name="test-project",
        edition_config="TRIAL",
        filter={
            "included_cloud_storage_buckets": {
                "bucket_id_regexes": [
                    "test-id-1*",
                    "test-id-2*",
                ],
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := storage.NewControlProjectIntelligenceConfig(ctx, "example", &storage.ControlProjectIntelligenceConfigArgs{
    			Name:          pulumi.String("test-project"),
    			EditionConfig: pulumi.String("TRIAL"),
    			Filter: &storage.ControlProjectIntelligenceConfigFilterArgs{
    				IncludedCloudStorageBuckets: &storage.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs{
    					BucketIdRegexes: pulumi.StringArray{
    						pulumi.String("test-id-1*"),
    						pulumi.String("test-id-2*"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Gcp.Storage.ControlProjectIntelligenceConfig("example", new()
        {
            Name = "test-project",
            EditionConfig = "TRIAL",
            Filter = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterArgs
            {
                IncludedCloudStorageBuckets = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs
                {
                    BucketIdRegexes = new[]
                    {
                        "test-id-1*",
                        "test-id-2*",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.storage.ControlProjectIntelligenceConfig;
    import com.pulumi.gcp.storage.ControlProjectIntelligenceConfigArgs;
    import com.pulumi.gcp.storage.inputs.ControlProjectIntelligenceConfigFilterArgs;
    import com.pulumi.gcp.storage.inputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs;
    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) {
            var example = new ControlProjectIntelligenceConfig("example", ControlProjectIntelligenceConfigArgs.builder()
                .name("test-project")
                .editionConfig("TRIAL")
                .filter(ControlProjectIntelligenceConfigFilterArgs.builder()
                    .includedCloudStorageBuckets(ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs.builder()
                        .bucketIdRegexes(                    
                            "test-id-1*",
                            "test-id-2*")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:storage:ControlProjectIntelligenceConfig
        properties:
          name: test-project
          editionConfig: TRIAL
          filter:
            includedCloudStorageBuckets:
              bucketIdRegexes:
                - test-id-1*
                - test-id-2*
    

    Create ControlProjectIntelligenceConfig Resource

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

    Constructor syntax

    new ControlProjectIntelligenceConfig(name: string, args?: ControlProjectIntelligenceConfigArgs, opts?: CustomResourceOptions);
    @overload
    def ControlProjectIntelligenceConfig(resource_name: str,
                                         args: Optional[ControlProjectIntelligenceConfigArgs] = None,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ControlProjectIntelligenceConfig(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         edition_config: Optional[str] = None,
                                         filter: Optional[ControlProjectIntelligenceConfigFilterArgs] = None,
                                         name: Optional[str] = None)
    func NewControlProjectIntelligenceConfig(ctx *Context, name string, args *ControlProjectIntelligenceConfigArgs, opts ...ResourceOption) (*ControlProjectIntelligenceConfig, error)
    public ControlProjectIntelligenceConfig(string name, ControlProjectIntelligenceConfigArgs? args = null, CustomResourceOptions? opts = null)
    public ControlProjectIntelligenceConfig(String name, ControlProjectIntelligenceConfigArgs args)
    public ControlProjectIntelligenceConfig(String name, ControlProjectIntelligenceConfigArgs args, CustomResourceOptions options)
    
    type: gcp:storage:ControlProjectIntelligenceConfig
    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 ControlProjectIntelligenceConfigArgs
    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 ControlProjectIntelligenceConfigArgs
    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 ControlProjectIntelligenceConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ControlProjectIntelligenceConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ControlProjectIntelligenceConfigArgs
    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 controlProjectIntelligenceConfigResource = new Gcp.Storage.ControlProjectIntelligenceConfig("controlProjectIntelligenceConfigResource", new()
    {
        EditionConfig = "string",
        Filter = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterArgs
        {
            ExcludedCloudStorageBuckets = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketsArgs
            {
                BucketIdRegexes = new[]
                {
                    "string",
                },
            },
            ExcludedCloudStorageLocations = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationsArgs
            {
                Locations = new[]
                {
                    "string",
                },
            },
            IncludedCloudStorageBuckets = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs
            {
                BucketIdRegexes = new[]
                {
                    "string",
                },
            },
            IncludedCloudStorageLocations = new Gcp.Storage.Inputs.ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationsArgs
            {
                Locations = new[]
                {
                    "string",
                },
            },
        },
        Name = "string",
    });
    
    example, err := storage.NewControlProjectIntelligenceConfig(ctx, "controlProjectIntelligenceConfigResource", &storage.ControlProjectIntelligenceConfigArgs{
    	EditionConfig: pulumi.String("string"),
    	Filter: &storage.ControlProjectIntelligenceConfigFilterArgs{
    		ExcludedCloudStorageBuckets: &storage.ControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketsArgs{
    			BucketIdRegexes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		ExcludedCloudStorageLocations: &storage.ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationsArgs{
    			Locations: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		IncludedCloudStorageBuckets: &storage.ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs{
    			BucketIdRegexes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		IncludedCloudStorageLocations: &storage.ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationsArgs{
    			Locations: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	Name: pulumi.String("string"),
    })
    
    var controlProjectIntelligenceConfigResource = new ControlProjectIntelligenceConfig("controlProjectIntelligenceConfigResource", ControlProjectIntelligenceConfigArgs.builder()
        .editionConfig("string")
        .filter(ControlProjectIntelligenceConfigFilterArgs.builder()
            .excludedCloudStorageBuckets(ControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketsArgs.builder()
                .bucketIdRegexes("string")
                .build())
            .excludedCloudStorageLocations(ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationsArgs.builder()
                .locations("string")
                .build())
            .includedCloudStorageBuckets(ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs.builder()
                .bucketIdRegexes("string")
                .build())
            .includedCloudStorageLocations(ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationsArgs.builder()
                .locations("string")
                .build())
            .build())
        .name("string")
        .build());
    
    control_project_intelligence_config_resource = gcp.storage.ControlProjectIntelligenceConfig("controlProjectIntelligenceConfigResource",
        edition_config="string",
        filter={
            "excluded_cloud_storage_buckets": {
                "bucket_id_regexes": ["string"],
            },
            "excluded_cloud_storage_locations": {
                "locations": ["string"],
            },
            "included_cloud_storage_buckets": {
                "bucket_id_regexes": ["string"],
            },
            "included_cloud_storage_locations": {
                "locations": ["string"],
            },
        },
        name="string")
    
    const controlProjectIntelligenceConfigResource = new gcp.storage.ControlProjectIntelligenceConfig("controlProjectIntelligenceConfigResource", {
        editionConfig: "string",
        filter: {
            excludedCloudStorageBuckets: {
                bucketIdRegexes: ["string"],
            },
            excludedCloudStorageLocations: {
                locations: ["string"],
            },
            includedCloudStorageBuckets: {
                bucketIdRegexes: ["string"],
            },
            includedCloudStorageLocations: {
                locations: ["string"],
            },
        },
        name: "string",
    });
    
    type: gcp:storage:ControlProjectIntelligenceConfig
    properties:
        editionConfig: string
        filter:
            excludedCloudStorageBuckets:
                bucketIdRegexes:
                    - string
            excludedCloudStorageLocations:
                locations:
                    - string
            includedCloudStorageBuckets:
                bucketIdRegexes:
                    - string
            includedCloudStorageLocations:
                locations:
                    - string
        name: string
    

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

    EditionConfig string
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    Filter ControlProjectIntelligenceConfigFilter
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    Name string
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    EditionConfig string
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    Filter ControlProjectIntelligenceConfigFilterArgs
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    Name string
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    editionConfig String
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    filter ControlProjectIntelligenceConfigFilter
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name String
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    editionConfig string
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    filter ControlProjectIntelligenceConfigFilter
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name string
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    edition_config str
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    filter ControlProjectIntelligenceConfigFilterArgs
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name str
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    editionConfig String
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    filter Property Map
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name String
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    Outputs

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

    EffectiveIntelligenceConfigs List<ControlProjectIntelligenceConfigEffectiveIntelligenceConfig>
    The Intelligence config that is effective for the resource. Structure is documented below.
    Id string
    The provider-assigned unique ID for this managed resource.
    TrialConfigs List<ControlProjectIntelligenceConfigTrialConfig>
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    UpdateTime string
    The time at which the Storage Intelligence Config resource is last updated.
    EffectiveIntelligenceConfigs []ControlProjectIntelligenceConfigEffectiveIntelligenceConfig
    The Intelligence config that is effective for the resource. Structure is documented below.
    Id string
    The provider-assigned unique ID for this managed resource.
    TrialConfigs []ControlProjectIntelligenceConfigTrialConfig
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    UpdateTime string
    The time at which the Storage Intelligence Config resource is last updated.
    effectiveIntelligenceConfigs List<ControlProjectIntelligenceConfigEffectiveIntelligenceConfig>
    The Intelligence config that is effective for the resource. Structure is documented below.
    id String
    The provider-assigned unique ID for this managed resource.
    trialConfigs List<ControlProjectIntelligenceConfigTrialConfig>
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    updateTime String
    The time at which the Storage Intelligence Config resource is last updated.
    effectiveIntelligenceConfigs ControlProjectIntelligenceConfigEffectiveIntelligenceConfig[]
    The Intelligence config that is effective for the resource. Structure is documented below.
    id string
    The provider-assigned unique ID for this managed resource.
    trialConfigs ControlProjectIntelligenceConfigTrialConfig[]
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    updateTime string
    The time at which the Storage Intelligence Config resource is last updated.
    effective_intelligence_configs Sequence[ControlProjectIntelligenceConfigEffectiveIntelligenceConfig]
    The Intelligence config that is effective for the resource. Structure is documented below.
    id str
    The provider-assigned unique ID for this managed resource.
    trial_configs Sequence[ControlProjectIntelligenceConfigTrialConfig]
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    update_time str
    The time at which the Storage Intelligence Config resource is last updated.
    effectiveIntelligenceConfigs List<Property Map>
    The Intelligence config that is effective for the resource. Structure is documented below.
    id String
    The provider-assigned unique ID for this managed resource.
    trialConfigs List<Property Map>
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    updateTime String
    The time at which the Storage Intelligence Config resource is last updated.

    Look up Existing ControlProjectIntelligenceConfig Resource

    Get an existing ControlProjectIntelligenceConfig 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?: ControlProjectIntelligenceConfigState, opts?: CustomResourceOptions): ControlProjectIntelligenceConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            edition_config: Optional[str] = None,
            effective_intelligence_configs: Optional[Sequence[ControlProjectIntelligenceConfigEffectiveIntelligenceConfigArgs]] = None,
            filter: Optional[ControlProjectIntelligenceConfigFilterArgs] = None,
            name: Optional[str] = None,
            trial_configs: Optional[Sequence[ControlProjectIntelligenceConfigTrialConfigArgs]] = None,
            update_time: Optional[str] = None) -> ControlProjectIntelligenceConfig
    func GetControlProjectIntelligenceConfig(ctx *Context, name string, id IDInput, state *ControlProjectIntelligenceConfigState, opts ...ResourceOption) (*ControlProjectIntelligenceConfig, error)
    public static ControlProjectIntelligenceConfig Get(string name, Input<string> id, ControlProjectIntelligenceConfigState? state, CustomResourceOptions? opts = null)
    public static ControlProjectIntelligenceConfig get(String name, Output<String> id, ControlProjectIntelligenceConfigState state, CustomResourceOptions options)
    resources:  _:    type: gcp:storage:ControlProjectIntelligenceConfig    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:
    EditionConfig string
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    EffectiveIntelligenceConfigs List<ControlProjectIntelligenceConfigEffectiveIntelligenceConfig>
    The Intelligence config that is effective for the resource. Structure is documented below.
    Filter ControlProjectIntelligenceConfigFilter
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    Name string
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    TrialConfigs List<ControlProjectIntelligenceConfigTrialConfig>
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    UpdateTime string
    The time at which the Storage Intelligence Config resource is last updated.
    EditionConfig string
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    EffectiveIntelligenceConfigs []ControlProjectIntelligenceConfigEffectiveIntelligenceConfigArgs
    The Intelligence config that is effective for the resource. Structure is documented below.
    Filter ControlProjectIntelligenceConfigFilterArgs
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    Name string
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    TrialConfigs []ControlProjectIntelligenceConfigTrialConfigArgs
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    UpdateTime string
    The time at which the Storage Intelligence Config resource is last updated.
    editionConfig String
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    effectiveIntelligenceConfigs List<ControlProjectIntelligenceConfigEffectiveIntelligenceConfig>
    The Intelligence config that is effective for the resource. Structure is documented below.
    filter ControlProjectIntelligenceConfigFilter
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name String
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    trialConfigs List<ControlProjectIntelligenceConfigTrialConfig>
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    updateTime String
    The time at which the Storage Intelligence Config resource is last updated.
    editionConfig string
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    effectiveIntelligenceConfigs ControlProjectIntelligenceConfigEffectiveIntelligenceConfig[]
    The Intelligence config that is effective for the resource. Structure is documented below.
    filter ControlProjectIntelligenceConfigFilter
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name string
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    trialConfigs ControlProjectIntelligenceConfigTrialConfig[]
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    updateTime string
    The time at which the Storage Intelligence Config resource is last updated.
    edition_config str
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    effective_intelligence_configs Sequence[ControlProjectIntelligenceConfigEffectiveIntelligenceConfigArgs]
    The Intelligence config that is effective for the resource. Structure is documented below.
    filter ControlProjectIntelligenceConfigFilterArgs
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name str
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    trial_configs Sequence[ControlProjectIntelligenceConfigTrialConfigArgs]
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    update_time str
    The time at which the Storage Intelligence Config resource is last updated.
    editionConfig String
    Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, TRIAL, DISABLED and STANDARD.
    effectiveIntelligenceConfigs List<Property Map>
    The Intelligence config that is effective for the resource. Structure is documented below.
    filter Property Map
    Filter over location and bucket using include or exclude semantics. Resources that match the include or exclude filter are exclusively included or excluded from the Storage Intelligence plan. Structure is documented below.
    name String
    Identifier of the GCP project. For GCP project, this field can be project name or project number.


    trialConfigs List<Property Map>
    The trial configuration of the Storage Intelligence resource. Structure is documented below.
    updateTime String
    The time at which the Storage Intelligence Config resource is last updated.

    Supporting Types

    ControlProjectIntelligenceConfigEffectiveIntelligenceConfig, ControlProjectIntelligenceConfigEffectiveIntelligenceConfigArgs

    EffectiveEdition string
    (Output) The StorageIntelligence edition that is applicable for the resource.
    IntelligenceConfig string
    (Output) The Intelligence config resource that is applied for the target resource.
    EffectiveEdition string
    (Output) The StorageIntelligence edition that is applicable for the resource.
    IntelligenceConfig string
    (Output) The Intelligence config resource that is applied for the target resource.
    effectiveEdition String
    (Output) The StorageIntelligence edition that is applicable for the resource.
    intelligenceConfig String
    (Output) The Intelligence config resource that is applied for the target resource.
    effectiveEdition string
    (Output) The StorageIntelligence edition that is applicable for the resource.
    intelligenceConfig string
    (Output) The Intelligence config resource that is applied for the target resource.
    effective_edition str
    (Output) The StorageIntelligence edition that is applicable for the resource.
    intelligence_config str
    (Output) The Intelligence config resource that is applied for the target resource.
    effectiveEdition String
    (Output) The StorageIntelligence edition that is applicable for the resource.
    intelligenceConfig String
    (Output) The Intelligence config resource that is applied for the target resource.

    ControlProjectIntelligenceConfigFilter, ControlProjectIntelligenceConfigFilterArgs

    ExcludedCloudStorageBuckets ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets
    Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
    ExcludedCloudStorageLocations ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations
    Locations to exclude from the Storage Intelligence plan. Structure is documented below.
    IncludedCloudStorageBuckets ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets
    Buckets to include in the Storage Intelligence plan. Structure is documented below.
    IncludedCloudStorageLocations ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations
    Locations to include in the Storage Intelligence plan. Structure is documented below.
    ExcludedCloudStorageBuckets ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets
    Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
    ExcludedCloudStorageLocations ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations
    Locations to exclude from the Storage Intelligence plan. Structure is documented below.
    IncludedCloudStorageBuckets ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets
    Buckets to include in the Storage Intelligence plan. Structure is documented below.
    IncludedCloudStorageLocations ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations
    Locations to include in the Storage Intelligence plan. Structure is documented below.
    excludedCloudStorageBuckets ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets
    Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
    excludedCloudStorageLocations ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations
    Locations to exclude from the Storage Intelligence plan. Structure is documented below.
    includedCloudStorageBuckets ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets
    Buckets to include in the Storage Intelligence plan. Structure is documented below.
    includedCloudStorageLocations ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations
    Locations to include in the Storage Intelligence plan. Structure is documented below.
    excludedCloudStorageBuckets ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets
    Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
    excludedCloudStorageLocations ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations
    Locations to exclude from the Storage Intelligence plan. Structure is documented below.
    includedCloudStorageBuckets ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets
    Buckets to include in the Storage Intelligence plan. Structure is documented below.
    includedCloudStorageLocations ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations
    Locations to include in the Storage Intelligence plan. Structure is documented below.
    excluded_cloud_storage_buckets ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets
    Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
    excluded_cloud_storage_locations ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations
    Locations to exclude from the Storage Intelligence plan. Structure is documented below.
    included_cloud_storage_buckets ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets
    Buckets to include in the Storage Intelligence plan. Structure is documented below.
    included_cloud_storage_locations ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations
    Locations to include in the Storage Intelligence plan. Structure is documented below.
    excludedCloudStorageBuckets Property Map
    Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
    excludedCloudStorageLocations Property Map
    Locations to exclude from the Storage Intelligence plan. Structure is documented below.
    includedCloudStorageBuckets Property Map
    Buckets to include in the Storage Intelligence plan. Structure is documented below.
    includedCloudStorageLocations Property Map
    Locations to include in the Storage Intelligence plan. Structure is documented below.

    ControlProjectIntelligenceConfigFilterExcludedCloudStorageBuckets, ControlProjectIntelligenceConfigFilterExcludedCloudStorageBucketsArgs

    BucketIdRegexes List<string>
    List of bucket id regexes to exclude in the storage intelligence plan.
    BucketIdRegexes []string
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucketIdRegexes List<String>
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucketIdRegexes string[]
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucket_id_regexes Sequence[str]
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucketIdRegexes List<String>
    List of bucket id regexes to exclude in the storage intelligence plan.

    ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocations, ControlProjectIntelligenceConfigFilterExcludedCloudStorageLocationsArgs

    Locations List<string>
    List of locations.
    Locations []string
    List of locations.
    locations List<String>
    List of locations.
    locations string[]
    List of locations.
    locations Sequence[str]
    List of locations.
    locations List<String>
    List of locations.

    ControlProjectIntelligenceConfigFilterIncludedCloudStorageBuckets, ControlProjectIntelligenceConfigFilterIncludedCloudStorageBucketsArgs

    BucketIdRegexes List<string>
    List of bucket id regexes to exclude in the storage intelligence plan.
    BucketIdRegexes []string
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucketIdRegexes List<String>
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucketIdRegexes string[]
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucket_id_regexes Sequence[str]
    List of bucket id regexes to exclude in the storage intelligence plan.
    bucketIdRegexes List<String>
    List of bucket id regexes to exclude in the storage intelligence plan.

    ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocations, ControlProjectIntelligenceConfigFilterIncludedCloudStorageLocationsArgs

    Locations List<string>
    List of locations.
    Locations []string
    List of locations.
    locations List<String>
    List of locations.
    locations string[]
    List of locations.
    locations Sequence[str]
    List of locations.
    locations List<String>
    List of locations.

    ControlProjectIntelligenceConfigTrialConfig, ControlProjectIntelligenceConfigTrialConfigArgs

    ExpireTime string
    (Output) The time at which the trial expires.
    ExpireTime string
    (Output) The time at which the trial expires.
    expireTime String
    (Output) The time at which the trial expires.
    expireTime string
    (Output) The time at which the trial expires.
    expire_time str
    (Output) The time at which the trial expires.
    expireTime String
    (Output) The time at which the trial expires.

    Import

    ProjectIntelligenceConfig can be imported using any of these accepted formats:

    • projects/{{name}}/locations/global/intelligenceConfig

    • {{name}}

    When using the pulumi import command, ProjectIntelligenceConfig can be imported using one of the formats above. For example:

    $ pulumi import gcp:storage/controlProjectIntelligenceConfig:ControlProjectIntelligenceConfig default projects/{{name}}/locations/global/intelligenceConfig
    
    $ pulumi import gcp:storage/controlProjectIntelligenceConfig:ControlProjectIntelligenceConfig default {{name}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud v8.29.0 published on Thursday, May 1, 2025 by Pulumi