1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. storage
  5. ControlOrganizationIntelligenceConfig
Google Cloud v8.26.0 published on Thursday, Apr 10, 2025 by Pulumi

gcp.storage.ControlOrganizationIntelligenceConfig

Explore with Pulumi AI

Example Usage

Storage Control Organization Intelligence Config Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const example = new gcp.storage.ControlOrganizationIntelligenceConfig("example", {
    name: "12345678",
    editionConfig: "STANDARD",
    filter: {
        excludedCloudStorageBuckets: {
            bucketIdRegexes: [
                "test-id-1*",
                "test-id-2*",
            ],
        },
        includedCloudStorageLocations: {
            locations: [
                "test-location-1*",
                "test-locations-2*",
            ],
        },
    },
});
Copy
import pulumi
import pulumi_gcp as gcp

example = gcp.storage.ControlOrganizationIntelligenceConfig("example",
    name="12345678",
    edition_config="STANDARD",
    filter={
        "excluded_cloud_storage_buckets": {
            "bucket_id_regexes": [
                "test-id-1*",
                "test-id-2*",
            ],
        },
        "included_cloud_storage_locations": {
            "locations": [
                "test-location-1*",
                "test-locations-2*",
            ],
        },
    })
Copy
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.NewControlOrganizationIntelligenceConfig(ctx, "example", &storage.ControlOrganizationIntelligenceConfigArgs{
			Name:          pulumi.String("12345678"),
			EditionConfig: pulumi.String("STANDARD"),
			Filter: &storage.ControlOrganizationIntelligenceConfigFilterArgs{
				ExcludedCloudStorageBuckets: &storage.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs{
					BucketIdRegexes: pulumi.StringArray{
						pulumi.String("test-id-1*"),
						pulumi.String("test-id-2*"),
					},
				},
				IncludedCloudStorageLocations: &storage.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs{
					Locations: pulumi.StringArray{
						pulumi.String("test-location-1*"),
						pulumi.String("test-locations-2*"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var example = new Gcp.Storage.ControlOrganizationIntelligenceConfig("example", new()
    {
        Name = "12345678",
        EditionConfig = "STANDARD",
        Filter = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterArgs
        {
            ExcludedCloudStorageBuckets = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs
            {
                BucketIdRegexes = new[]
                {
                    "test-id-1*",
                    "test-id-2*",
                },
            },
            IncludedCloudStorageLocations = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs
            {
                Locations = new[]
                {
                    "test-location-1*",
                    "test-locations-2*",
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.ControlOrganizationIntelligenceConfig;
import com.pulumi.gcp.storage.ControlOrganizationIntelligenceConfigArgs;
import com.pulumi.gcp.storage.inputs.ControlOrganizationIntelligenceConfigFilterArgs;
import com.pulumi.gcp.storage.inputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs;
import com.pulumi.gcp.storage.inputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs;
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 ControlOrganizationIntelligenceConfig("example", ControlOrganizationIntelligenceConfigArgs.builder()
            .name("12345678")
            .editionConfig("STANDARD")
            .filter(ControlOrganizationIntelligenceConfigFilterArgs.builder()
                .excludedCloudStorageBuckets(ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs.builder()
                    .bucketIdRegexes(                    
                        "test-id-1*",
                        "test-id-2*")
                    .build())
                .includedCloudStorageLocations(ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs.builder()
                    .locations(                    
                        "test-location-1*",
                        "test-locations-2*")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: gcp:storage:ControlOrganizationIntelligenceConfig
    properties:
      name: '12345678'
      editionConfig: STANDARD
      filter:
        excludedCloudStorageBuckets:
          bucketIdRegexes:
            - test-id-1*
            - test-id-2*
        includedCloudStorageLocations:
          locations:
            - test-location-1*
            - test-locations-2*
Copy

Create ControlOrganizationIntelligenceConfig Resource

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

Constructor syntax

new ControlOrganizationIntelligenceConfig(name: string, args?: ControlOrganizationIntelligenceConfigArgs, opts?: CustomResourceOptions);
@overload
def ControlOrganizationIntelligenceConfig(resource_name: str,
                                          args: Optional[ControlOrganizationIntelligenceConfigArgs] = None,
                                          opts: Optional[ResourceOptions] = None)

@overload
def ControlOrganizationIntelligenceConfig(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          edition_config: Optional[str] = None,
                                          filter: Optional[ControlOrganizationIntelligenceConfigFilterArgs] = None,
                                          name: Optional[str] = None)
func NewControlOrganizationIntelligenceConfig(ctx *Context, name string, args *ControlOrganizationIntelligenceConfigArgs, opts ...ResourceOption) (*ControlOrganizationIntelligenceConfig, error)
public ControlOrganizationIntelligenceConfig(string name, ControlOrganizationIntelligenceConfigArgs? args = null, CustomResourceOptions? opts = null)
public ControlOrganizationIntelligenceConfig(String name, ControlOrganizationIntelligenceConfigArgs args)
public ControlOrganizationIntelligenceConfig(String name, ControlOrganizationIntelligenceConfigArgs args, CustomResourceOptions options)
type: gcp:storage:ControlOrganizationIntelligenceConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ControlOrganizationIntelligenceConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ControlOrganizationIntelligenceConfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ControlOrganizationIntelligenceConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ControlOrganizationIntelligenceConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ControlOrganizationIntelligenceConfigArgs
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 controlOrganizationIntelligenceConfigResource = new Gcp.Storage.ControlOrganizationIntelligenceConfig("controlOrganizationIntelligenceConfigResource", new()
{
    EditionConfig = "string",
    Filter = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterArgs
    {
        ExcludedCloudStorageBuckets = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs
        {
            BucketIdRegexes = new[]
            {
                "string",
            },
        },
        ExcludedCloudStorageLocations = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationsArgs
        {
            Locations = new[]
            {
                "string",
            },
        },
        IncludedCloudStorageBuckets = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketsArgs
        {
            BucketIdRegexes = new[]
            {
                "string",
            },
        },
        IncludedCloudStorageLocations = new Gcp.Storage.Inputs.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs
        {
            Locations = new[]
            {
                "string",
            },
        },
    },
    Name = "string",
});
Copy
example, err := storage.NewControlOrganizationIntelligenceConfig(ctx, "controlOrganizationIntelligenceConfigResource", &storage.ControlOrganizationIntelligenceConfigArgs{
	EditionConfig: pulumi.String("string"),
	Filter: &storage.ControlOrganizationIntelligenceConfigFilterArgs{
		ExcludedCloudStorageBuckets: &storage.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs{
			BucketIdRegexes: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		ExcludedCloudStorageLocations: &storage.ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationsArgs{
			Locations: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		IncludedCloudStorageBuckets: &storage.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketsArgs{
			BucketIdRegexes: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		IncludedCloudStorageLocations: &storage.ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs{
			Locations: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	Name: pulumi.String("string"),
})
Copy
var controlOrganizationIntelligenceConfigResource = new ControlOrganizationIntelligenceConfig("controlOrganizationIntelligenceConfigResource", ControlOrganizationIntelligenceConfigArgs.builder()
    .editionConfig("string")
    .filter(ControlOrganizationIntelligenceConfigFilterArgs.builder()
        .excludedCloudStorageBuckets(ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs.builder()
            .bucketIdRegexes("string")
            .build())
        .excludedCloudStorageLocations(ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationsArgs.builder()
            .locations("string")
            .build())
        .includedCloudStorageBuckets(ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketsArgs.builder()
            .bucketIdRegexes("string")
            .build())
        .includedCloudStorageLocations(ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs.builder()
            .locations("string")
            .build())
        .build())
    .name("string")
    .build());
Copy
control_organization_intelligence_config_resource = gcp.storage.ControlOrganizationIntelligenceConfig("controlOrganizationIntelligenceConfigResource",
    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")
Copy
const controlOrganizationIntelligenceConfigResource = new gcp.storage.ControlOrganizationIntelligenceConfig("controlOrganizationIntelligenceConfigResource", {
    editionConfig: "string",
    filter: {
        excludedCloudStorageBuckets: {
            bucketIdRegexes: ["string"],
        },
        excludedCloudStorageLocations: {
            locations: ["string"],
        },
        includedCloudStorageBuckets: {
            bucketIdRegexes: ["string"],
        },
        includedCloudStorageLocations: {
            locations: ["string"],
        },
    },
    name: "string",
});
Copy
type: gcp:storage:ControlOrganizationIntelligenceConfig
properties:
    editionConfig: string
    filter:
        excludedCloudStorageBuckets:
            bucketIdRegexes:
                - string
        excludedCloudStorageLocations:
            locations:
                - string
        includedCloudStorageBuckets:
            bucketIdRegexes:
                - string
        includedCloudStorageLocations:
            locations:
                - string
    name: string
Copy

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

EditionConfig string
Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, DISABLED, TRIAL and STANDARD.
Filter ControlOrganizationIntelligenceConfigFilter
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 Changes to this property will trigger replacement. string
Identifier of the GCP Organization. For GCP org, this field should be organization number.


EditionConfig string
Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, DISABLED, TRIAL and STANDARD.
Filter ControlOrganizationIntelligenceConfigFilterArgs
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 Changes to this property will trigger replacement. string
Identifier of the GCP Organization. For GCP org, this field should be organization number.


editionConfig String
Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, DISABLED, TRIAL and STANDARD.
filter ControlOrganizationIntelligenceConfigFilter
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 Changes to this property will trigger replacement. String
Identifier of the GCP Organization. For GCP org, this field should be organization number.


editionConfig string
Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, DISABLED, TRIAL and STANDARD.
filter ControlOrganizationIntelligenceConfigFilter
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 Changes to this property will trigger replacement. string
Identifier of the GCP Organization. For GCP org, this field should be organization number.


edition_config str
Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, DISABLED, TRIAL and STANDARD.
filter ControlOrganizationIntelligenceConfigFilterArgs
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 Changes to this property will trigger replacement. str
Identifier of the GCP Organization. For GCP org, this field should be organization number.


editionConfig String
Edition configuration of the Storage Intelligence resource. Valid values are INHERIT, DISABLED, TRIAL 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 Changes to this property will trigger replacement. String
Identifier of the GCP Organization. For GCP org, this field should be organization number.


Outputs

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

EffectiveIntelligenceConfigs List<ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig>
The Intelligence config that is effective for the resource. Structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
UpdateTime string
The time at which the Storage Intelligence Config resource is last updated.
EffectiveIntelligenceConfigs []ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig
The Intelligence config that is effective for the resource. Structure is documented below.
Id string
The provider-assigned unique ID for this managed resource.
UpdateTime string
The time at which the Storage Intelligence Config resource is last updated.
effectiveIntelligenceConfigs List<ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig>
The Intelligence config that is effective for the resource. Structure is documented below.
id String
The provider-assigned unique ID for this managed resource.
updateTime String
The time at which the Storage Intelligence Config resource is last updated.
effectiveIntelligenceConfigs ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig[]
The Intelligence config that is effective for the resource. Structure is documented below.
id string
The provider-assigned unique ID for this managed resource.
updateTime string
The time at which the Storage Intelligence Config resource is last updated.
effective_intelligence_configs Sequence[ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig]
The Intelligence config that is effective for the resource. Structure is documented below.
id str
The provider-assigned unique ID for this managed resource.
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.
updateTime String
The time at which the Storage Intelligence Config resource is last updated.

Look up Existing ControlOrganizationIntelligenceConfig Resource

Get an existing ControlOrganizationIntelligenceConfig 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?: ControlOrganizationIntelligenceConfigState, opts?: CustomResourceOptions): ControlOrganizationIntelligenceConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        edition_config: Optional[str] = None,
        effective_intelligence_configs: Optional[Sequence[ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfigArgs]] = None,
        filter: Optional[ControlOrganizationIntelligenceConfigFilterArgs] = None,
        name: Optional[str] = None,
        update_time: Optional[str] = None) -> ControlOrganizationIntelligenceConfig
func GetControlOrganizationIntelligenceConfig(ctx *Context, name string, id IDInput, state *ControlOrganizationIntelligenceConfigState, opts ...ResourceOption) (*ControlOrganizationIntelligenceConfig, error)
public static ControlOrganizationIntelligenceConfig Get(string name, Input<string> id, ControlOrganizationIntelligenceConfigState? state, CustomResourceOptions? opts = null)
public static ControlOrganizationIntelligenceConfig get(String name, Output<String> id, ControlOrganizationIntelligenceConfigState state, CustomResourceOptions options)
resources:  _:    type: gcp:storage:ControlOrganizationIntelligenceConfig    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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, DISABLED, TRIAL and STANDARD.
EffectiveIntelligenceConfigs List<ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig>
The Intelligence config that is effective for the resource. Structure is documented below.
Filter ControlOrganizationIntelligenceConfigFilter
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 Changes to this property will trigger replacement. string
Identifier of the GCP Organization. For GCP org, this field should be organization number.


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, DISABLED, TRIAL and STANDARD.
EffectiveIntelligenceConfigs []ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfigArgs
The Intelligence config that is effective for the resource. Structure is documented below.
Filter ControlOrganizationIntelligenceConfigFilterArgs
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 Changes to this property will trigger replacement. string
Identifier of the GCP Organization. For GCP org, this field should be organization number.


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, DISABLED, TRIAL and STANDARD.
effectiveIntelligenceConfigs List<ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig>
The Intelligence config that is effective for the resource. Structure is documented below.
filter ControlOrganizationIntelligenceConfigFilter
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 Changes to this property will trigger replacement. String
Identifier of the GCP Organization. For GCP org, this field should be organization number.


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, DISABLED, TRIAL and STANDARD.
effectiveIntelligenceConfigs ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig[]
The Intelligence config that is effective for the resource. Structure is documented below.
filter ControlOrganizationIntelligenceConfigFilter
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 Changes to this property will trigger replacement. string
Identifier of the GCP Organization. For GCP org, this field should be organization number.


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, DISABLED, TRIAL and STANDARD.
effective_intelligence_configs Sequence[ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfigArgs]
The Intelligence config that is effective for the resource. Structure is documented below.
filter ControlOrganizationIntelligenceConfigFilterArgs
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 Changes to this property will trigger replacement. str
Identifier of the GCP Organization. For GCP org, this field should be organization number.


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, DISABLED, TRIAL 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 Changes to this property will trigger replacement. String
Identifier of the GCP Organization. For GCP org, this field should be organization number.


updateTime String
The time at which the Storage Intelligence Config resource is last updated.

Supporting Types

ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfig
, ControlOrganizationIntelligenceConfigEffectiveIntelligenceConfigArgs

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.

ControlOrganizationIntelligenceConfigFilter
, ControlOrganizationIntelligenceConfigFilterArgs

ExcludedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets
Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
ExcludedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations
Locations to exclude from the Storage Intelligence plan. Structure is documented below.
IncludedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets
Buckets to include in the Storage Intelligence plan. Structure is documented below.
IncludedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations
Locations to include in the Storage Intelligence plan. Structure is documented below.
ExcludedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets
Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
ExcludedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations
Locations to exclude from the Storage Intelligence plan. Structure is documented below.
IncludedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets
Buckets to include in the Storage Intelligence plan. Structure is documented below.
IncludedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations
Locations to include in the Storage Intelligence plan. Structure is documented below.
excludedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets
Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
excludedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations
Locations to exclude from the Storage Intelligence plan. Structure is documented below.
includedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets
Buckets to include in the Storage Intelligence plan. Structure is documented below.
includedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations
Locations to include in the Storage Intelligence plan. Structure is documented below.
excludedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets
Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
excludedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations
Locations to exclude from the Storage Intelligence plan. Structure is documented below.
includedCloudStorageBuckets ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets
Buckets to include in the Storage Intelligence plan. Structure is documented below.
includedCloudStorageLocations ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations
Locations to include in the Storage Intelligence plan. Structure is documented below.
excluded_cloud_storage_buckets ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets
Buckets to exclude from the Storage Intelligence plan. Structure is documented below.
excluded_cloud_storage_locations ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations
Locations to exclude from the Storage Intelligence plan. Structure is documented below.
included_cloud_storage_buckets ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets
Buckets to include in the Storage Intelligence plan. Structure is documented below.
included_cloud_storage_locations ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations
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.

ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBuckets
, ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageBucketsArgs

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

ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocations
, ControlOrganizationIntelligenceConfigFilterExcludedCloudStorageLocationsArgs

Locations This property is required. List<string>
List of locations.
Locations This property is required. []string
List of locations.
locations This property is required. List<String>
List of locations.
locations This property is required. string[]
List of locations.
locations This property is required. Sequence[str]
List of locations.
locations This property is required. List<String>
List of locations.

ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBuckets
, ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageBucketsArgs

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

ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocations
, ControlOrganizationIntelligenceConfigFilterIncludedCloudStorageLocationsArgs

Locations This property is required. List<string>
List of locations.
Locations This property is required. []string
List of locations.
locations This property is required. List<String>
List of locations.
locations This property is required. string[]
List of locations.
locations This property is required. Sequence[str]
List of locations.
locations This property is required. List<String>
List of locations.

Import

OrganizationIntelligenceConfig can be imported using any of these accepted formats:

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

  • {{name}}

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

$ pulumi import gcp:storage/controlOrganizationIntelligenceConfig:ControlOrganizationIntelligenceConfig default organizations/{{name}}/locations/global/intelligenceConfig
Copy
$ pulumi import gcp:storage/controlOrganizationIntelligenceConfig:ControlOrganizationIntelligenceConfig default {{name}}
Copy

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.