1. Packages
  2. Azure Native
  3. API Docs
  4. storagediscovery
  5. StorageDiscoveryWorkspace
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.6.1 published on Friday, Aug 1, 2025 by Pulumi

azure-native.storagediscovery.StorageDiscoveryWorkspace

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.6.1 published on Friday, Aug 1, 2025 by Pulumi

    A Storage Discovery Workspace resource. This resource configures the collection of storage account metrics.

    Uses Azure REST API version 2025-06-01-preview.

    Example Usage

    Create or Update a StorageDiscoveryWorkspace

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var storageDiscoveryWorkspace = new AzureNative.StorageDiscovery.StorageDiscoveryWorkspace("storageDiscoveryWorkspace", new()
        {
            Location = "westeurope",
            Properties = new AzureNative.StorageDiscovery.Inputs.StorageDiscoveryWorkspacePropertiesArgs
            {
                Description = "Sample Storage Discovery Workspace",
                Scopes = new[]
                {
                    new AzureNative.StorageDiscovery.Inputs.StorageDiscoveryScopeArgs
                    {
                        DisplayName = "Sample-Collection",
                        ResourceTypes = new[]
                        {
                            "/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount",
                        },
                        TagKeysOnly = new[]
                        {
                            "filterTag1",
                            "filterTag2",
                        },
                        Tags = 
                        {
                            { "filterTag3", "value3" },
                            { "filterTag4", "value4" },
                        },
                    },
                    new AzureNative.StorageDiscovery.Inputs.StorageDiscoveryScopeArgs
                    {
                        DisplayName = "Sample-Collection-2",
                        ResourceTypes = new[]
                        {
                            "/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount",
                        },
                        TagKeysOnly = new[]
                        {
                            "filterTag5",
                        },
                        Tags = 
                        {
                            { "filterTag6", "value6" },
                        },
                    },
                },
                WorkspaceRoots = new[]
                {
                    "/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09",
                },
            },
            ResourceGroupName = "sample-rg",
            StorageDiscoveryWorkspaceName = "Sample-Storage-Workspace",
            Tags = 
            {
                { "tag1", "value1" },
                { "tag2", "value2" },
            },
        });
    
    });
    
    package main
    
    import (
    	storagediscovery "github.com/pulumi/pulumi-azure-native-sdk/storagediscovery/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := storagediscovery.NewStorageDiscoveryWorkspace(ctx, "storageDiscoveryWorkspace", &storagediscovery.StorageDiscoveryWorkspaceArgs{
    			Location: pulumi.String("westeurope"),
    			Properties: &storagediscovery.StorageDiscoveryWorkspacePropertiesArgs{
    				Description: pulumi.String("Sample Storage Discovery Workspace"),
    				Scopes: storagediscovery.StorageDiscoveryScopeArray{
    					&storagediscovery.StorageDiscoveryScopeArgs{
    						DisplayName: pulumi.String("Sample-Collection"),
    						ResourceTypes: pulumi.StringArray{
    							pulumi.String("/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount"),
    						},
    						TagKeysOnly: pulumi.StringArray{
    							pulumi.String("filterTag1"),
    							pulumi.String("filterTag2"),
    						},
    						Tags: pulumi.StringMap{
    							"filterTag3": pulumi.String("value3"),
    							"filterTag4": pulumi.String("value4"),
    						},
    					},
    					&storagediscovery.StorageDiscoveryScopeArgs{
    						DisplayName: pulumi.String("Sample-Collection-2"),
    						ResourceTypes: pulumi.StringArray{
    							pulumi.String("/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount"),
    						},
    						TagKeysOnly: pulumi.StringArray{
    							pulumi.String("filterTag5"),
    						},
    						Tags: pulumi.StringMap{
    							"filterTag6": pulumi.String("value6"),
    						},
    					},
    				},
    				WorkspaceRoots: pulumi.StringArray{
    					pulumi.String("/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09"),
    				},
    			},
    			ResourceGroupName:             pulumi.String("sample-rg"),
    			StorageDiscoveryWorkspaceName: pulumi.String("Sample-Storage-Workspace"),
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    				"tag2": pulumi.String("value2"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.storagediscovery.StorageDiscoveryWorkspace;
    import com.pulumi.azurenative.storagediscovery.StorageDiscoveryWorkspaceArgs;
    import com.pulumi.azurenative.storagediscovery.inputs.StorageDiscoveryWorkspacePropertiesArgs;
    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 storageDiscoveryWorkspace = new StorageDiscoveryWorkspace("storageDiscoveryWorkspace", StorageDiscoveryWorkspaceArgs.builder()
                .location("westeurope")
                .properties(StorageDiscoveryWorkspacePropertiesArgs.builder()
                    .description("Sample Storage Discovery Workspace")
                    .scopes(                
                        StorageDiscoveryScopeArgs.builder()
                            .displayName("Sample-Collection")
                            .resourceTypes("/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount")
                            .tagKeysOnly(                        
                                "filterTag1",
                                "filterTag2")
                            .tags(Map.ofEntries(
                                Map.entry("filterTag3", "value3"),
                                Map.entry("filterTag4", "value4")
                            ))
                            .build(),
                        StorageDiscoveryScopeArgs.builder()
                            .displayName("Sample-Collection-2")
                            .resourceTypes("/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount")
                            .tagKeysOnly("filterTag5")
                            .tags(Map.of("filterTag6", "value6"))
                            .build())
                    .workspaceRoots("/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09")
                    .build())
                .resourceGroupName("sample-rg")
                .storageDiscoveryWorkspaceName("Sample-Storage-Workspace")
                .tags(Map.ofEntries(
                    Map.entry("tag1", "value1"),
                    Map.entry("tag2", "value2")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const storageDiscoveryWorkspace = new azure_native.storagediscovery.StorageDiscoveryWorkspace("storageDiscoveryWorkspace", {
        location: "westeurope",
        properties: {
            description: "Sample Storage Discovery Workspace",
            scopes: [
                {
                    displayName: "Sample-Collection",
                    resourceTypes: ["/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount"],
                    tagKeysOnly: [
                        "filterTag1",
                        "filterTag2",
                    ],
                    tags: {
                        filterTag3: "value3",
                        filterTag4: "value4",
                    },
                },
                {
                    displayName: "Sample-Collection-2",
                    resourceTypes: ["/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount"],
                    tagKeysOnly: ["filterTag5"],
                    tags: {
                        filterTag6: "value6",
                    },
                },
            ],
            workspaceRoots: ["/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09"],
        },
        resourceGroupName: "sample-rg",
        storageDiscoveryWorkspaceName: "Sample-Storage-Workspace",
        tags: {
            tag1: "value1",
            tag2: "value2",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    storage_discovery_workspace = azure_native.storagediscovery.StorageDiscoveryWorkspace("storageDiscoveryWorkspace",
        location="westeurope",
        properties={
            "description": "Sample Storage Discovery Workspace",
            "scopes": [
                {
                    "display_name": "Sample-Collection",
                    "resource_types": ["/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount"],
                    "tag_keys_only": [
                        "filterTag1",
                        "filterTag2",
                    ],
                    "tags": {
                        "filterTag3": "value3",
                        "filterTag4": "value4",
                    },
                },
                {
                    "display_name": "Sample-Collection-2",
                    "resource_types": ["/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount"],
                    "tag_keys_only": ["filterTag5"],
                    "tags": {
                        "filterTag6": "value6",
                    },
                },
            ],
            "workspace_roots": ["/subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09"],
        },
        resource_group_name="sample-rg",
        storage_discovery_workspace_name="Sample-Storage-Workspace",
        tags={
            "tag1": "value1",
            "tag2": "value2",
        })
    
    resources:
      storageDiscoveryWorkspace:
        type: azure-native:storagediscovery:StorageDiscoveryWorkspace
        properties:
          location: westeurope
          properties:
            description: Sample Storage Discovery Workspace
            scopes:
              - displayName: Sample-Collection
                resourceTypes:
                  - /subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount
                tagKeysOnly:
                  - filterTag1
                  - filterTag2
                tags:
                  filterTag3: value3
                  filterTag4: value4
              - displayName: Sample-Collection-2
                resourceTypes:
                  - /subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09/resourceGroups/sample-rg/providers/Microsoft.Storage/storageAccounts/sample-storageAccount
                tagKeysOnly:
                  - filterTag5
                tags:
                  filterTag6: value6
            workspaceRoots:
              - /subscriptions/b79cb3ba-745e-5d9a-8903-4a02327a7e09
          resourceGroupName: sample-rg
          storageDiscoveryWorkspaceName: Sample-Storage-Workspace
          tags:
            tag1: value1
            tag2: value2
    

    Create StorageDiscoveryWorkspace Resource

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

    Constructor syntax

    new StorageDiscoveryWorkspace(name: string, args: StorageDiscoveryWorkspaceArgs, opts?: CustomResourceOptions);
    @overload
    def StorageDiscoveryWorkspace(resource_name: str,
                                  args: StorageDiscoveryWorkspaceArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def StorageDiscoveryWorkspace(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  resource_group_name: Optional[str] = None,
                                  location: Optional[str] = None,
                                  properties: Optional[StorageDiscoveryWorkspacePropertiesArgs] = None,
                                  storage_discovery_workspace_name: Optional[str] = None,
                                  tags: Optional[Mapping[str, str]] = None)
    func NewStorageDiscoveryWorkspace(ctx *Context, name string, args StorageDiscoveryWorkspaceArgs, opts ...ResourceOption) (*StorageDiscoveryWorkspace, error)
    public StorageDiscoveryWorkspace(string name, StorageDiscoveryWorkspaceArgs args, CustomResourceOptions? opts = null)
    public StorageDiscoveryWorkspace(String name, StorageDiscoveryWorkspaceArgs args)
    public StorageDiscoveryWorkspace(String name, StorageDiscoveryWorkspaceArgs args, CustomResourceOptions options)
    
    type: azure-native:storagediscovery:StorageDiscoveryWorkspace
    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 StorageDiscoveryWorkspaceArgs
    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 StorageDiscoveryWorkspaceArgs
    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 StorageDiscoveryWorkspaceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StorageDiscoveryWorkspaceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StorageDiscoveryWorkspaceArgs
    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 storageDiscoveryWorkspaceResource = new AzureNative.StorageDiscovery.StorageDiscoveryWorkspace("storageDiscoveryWorkspaceResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Properties = new AzureNative.StorageDiscovery.Inputs.StorageDiscoveryWorkspacePropertiesArgs
        {
            Scopes = new[]
            {
                new AzureNative.StorageDiscovery.Inputs.StorageDiscoveryScopeArgs
                {
                    DisplayName = "string",
                    ResourceTypes = new[]
                    {
                        "string",
                    },
                    TagKeysOnly = new[]
                    {
                        "string",
                    },
                    Tags = 
                    {
                        { "string", "string" },
                    },
                },
            },
            WorkspaceRoots = new[]
            {
                "string",
            },
            Description = "string",
            Sku = "string",
        },
        StorageDiscoveryWorkspaceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := storagediscovery.NewStorageDiscoveryWorkspace(ctx, "storageDiscoveryWorkspaceResource", &storagediscovery.StorageDiscoveryWorkspaceArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &storagediscovery.StorageDiscoveryWorkspacePropertiesArgs{
    		Scopes: storagediscovery.StorageDiscoveryScopeArray{
    			&storagediscovery.StorageDiscoveryScopeArgs{
    				DisplayName: pulumi.String("string"),
    				ResourceTypes: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				TagKeysOnly: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Tags: pulumi.StringMap{
    					"string": pulumi.String("string"),
    				},
    			},
    		},
    		WorkspaceRoots: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Description: pulumi.String("string"),
    		Sku:         pulumi.String("string"),
    	},
    	StorageDiscoveryWorkspaceName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var storageDiscoveryWorkspaceResource = new StorageDiscoveryWorkspace("storageDiscoveryWorkspaceResource", StorageDiscoveryWorkspaceArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .properties(StorageDiscoveryWorkspacePropertiesArgs.builder()
            .scopes(StorageDiscoveryScopeArgs.builder()
                .displayName("string")
                .resourceTypes("string")
                .tagKeysOnly("string")
                .tags(Map.of("string", "string"))
                .build())
            .workspaceRoots("string")
            .description("string")
            .sku("string")
            .build())
        .storageDiscoveryWorkspaceName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    storage_discovery_workspace_resource = azure_native.storagediscovery.StorageDiscoveryWorkspace("storageDiscoveryWorkspaceResource",
        resource_group_name="string",
        location="string",
        properties={
            "scopes": [{
                "display_name": "string",
                "resource_types": ["string"],
                "tag_keys_only": ["string"],
                "tags": {
                    "string": "string",
                },
            }],
            "workspace_roots": ["string"],
            "description": "string",
            "sku": "string",
        },
        storage_discovery_workspace_name="string",
        tags={
            "string": "string",
        })
    
    const storageDiscoveryWorkspaceResource = new azure_native.storagediscovery.StorageDiscoveryWorkspace("storageDiscoveryWorkspaceResource", {
        resourceGroupName: "string",
        location: "string",
        properties: {
            scopes: [{
                displayName: "string",
                resourceTypes: ["string"],
                tagKeysOnly: ["string"],
                tags: {
                    string: "string",
                },
            }],
            workspaceRoots: ["string"],
            description: "string",
            sku: "string",
        },
        storageDiscoveryWorkspaceName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:storagediscovery:StorageDiscoveryWorkspace
    properties:
        location: string
        properties:
            description: string
            scopes:
                - displayName: string
                  resourceTypes:
                    - string
                  tagKeysOnly:
                    - string
                  tags:
                    string: string
            sku: string
            workspaceRoots:
                - string
        resourceGroupName: string
        storageDiscoveryWorkspaceName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.StorageDiscovery.Inputs.StorageDiscoveryWorkspaceProperties
    The resource-specific properties for this resource.
    StorageDiscoveryWorkspaceName string
    The name of the StorageDiscoveryWorkspace
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties StorageDiscoveryWorkspacePropertiesArgs
    The resource-specific properties for this resource.
    StorageDiscoveryWorkspaceName string
    The name of the StorageDiscoveryWorkspace
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties StorageDiscoveryWorkspaceProperties
    The resource-specific properties for this resource.
    storageDiscoveryWorkspaceName String
    The name of the StorageDiscoveryWorkspace
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    properties StorageDiscoveryWorkspaceProperties
    The resource-specific properties for this resource.
    storageDiscoveryWorkspaceName string
    The name of the StorageDiscoveryWorkspace
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    properties StorageDiscoveryWorkspacePropertiesArgs
    The resource-specific properties for this resource.
    storage_discovery_workspace_name str
    The name of the StorageDiscoveryWorkspace
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    storageDiscoveryWorkspaceName String
    The name of the StorageDiscoveryWorkspace
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.StorageDiscovery.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    StorageDiscoveryResourceType, StorageDiscoveryResourceTypeArgs

    StorageAccounts
    Microsoft.Storage/storageAccountsStorage Account Resource Type
    StorageDiscoveryResourceTypeStorageAccounts
    Microsoft.Storage/storageAccountsStorage Account Resource Type
    StorageAccounts
    Microsoft.Storage/storageAccountsStorage Account Resource Type
    StorageAccounts
    Microsoft.Storage/storageAccountsStorage Account Resource Type
    STORAGE_ACCOUNTS
    Microsoft.Storage/storageAccountsStorage Account Resource Type
    "Microsoft.Storage/storageAccounts"
    Microsoft.Storage/storageAccountsStorage Account Resource Type

    StorageDiscoveryScope, StorageDiscoveryScopeArgs

    DisplayName string
    Display name of the collection
    ResourceTypes List<Union<string, Pulumi.AzureNative.StorageDiscovery.StorageDiscoveryResourceType>>
    Resource types for the collection
    TagKeysOnly List<string>
    The storage account tags keys to filter
    Tags Dictionary<string, string>
    Resource tags.
    DisplayName string
    Display name of the collection
    ResourceTypes []string
    Resource types for the collection
    TagKeysOnly []string
    The storage account tags keys to filter
    Tags map[string]string
    Resource tags.
    displayName String
    Display name of the collection
    resourceTypes List<Either<String,StorageDiscoveryResourceType>>
    Resource types for the collection
    tagKeysOnly List<String>
    The storage account tags keys to filter
    tags Map<String,String>
    Resource tags.
    displayName string
    Display name of the collection
    resourceTypes (string | StorageDiscoveryResourceType)[]
    Resource types for the collection
    tagKeysOnly string[]
    The storage account tags keys to filter
    tags {[key: string]: string}
    Resource tags.
    display_name str
    Display name of the collection
    resource_types Sequence[Union[str, StorageDiscoveryResourceType]]
    Resource types for the collection
    tag_keys_only Sequence[str]
    The storage account tags keys to filter
    tags Mapping[str, str]
    Resource tags.
    displayName String
    Display name of the collection
    resourceTypes List<String | "Microsoft.Storage/storageAccounts">
    Resource types for the collection
    tagKeysOnly List<String>
    The storage account tags keys to filter
    tags Map<String>
    Resource tags.

    StorageDiscoveryScopeResponse, StorageDiscoveryScopeResponseArgs

    DisplayName string
    Display name of the collection
    ResourceTypes List<string>
    Resource types for the collection
    TagKeysOnly List<string>
    The storage account tags keys to filter
    Tags Dictionary<string, string>
    Resource tags.
    DisplayName string
    Display name of the collection
    ResourceTypes []string
    Resource types for the collection
    TagKeysOnly []string
    The storage account tags keys to filter
    Tags map[string]string
    Resource tags.
    displayName String
    Display name of the collection
    resourceTypes List<String>
    Resource types for the collection
    tagKeysOnly List<String>
    The storage account tags keys to filter
    tags Map<String,String>
    Resource tags.
    displayName string
    Display name of the collection
    resourceTypes string[]
    Resource types for the collection
    tagKeysOnly string[]
    The storage account tags keys to filter
    tags {[key: string]: string}
    Resource tags.
    display_name str
    Display name of the collection
    resource_types Sequence[str]
    Resource types for the collection
    tag_keys_only Sequence[str]
    The storage account tags keys to filter
    tags Mapping[str, str]
    Resource tags.
    displayName String
    Display name of the collection
    resourceTypes List<String>
    Resource types for the collection
    tagKeysOnly List<String>
    The storage account tags keys to filter
    tags Map<String>
    Resource tags.

    StorageDiscoverySku, StorageDiscoverySkuArgs

    Standard
    StandardStandard Sku
    Free
    FreeFree Sku
    StorageDiscoverySkuStandard
    StandardStandard Sku
    StorageDiscoverySkuFree
    FreeFree Sku
    Standard
    StandardStandard Sku
    Free
    FreeFree Sku
    Standard
    StandardStandard Sku
    Free
    FreeFree Sku
    STANDARD
    StandardStandard Sku
    FREE
    FreeFree Sku
    "Standard"
    StandardStandard Sku
    "Free"
    FreeFree Sku

    StorageDiscoveryWorkspaceProperties, StorageDiscoveryWorkspacePropertiesArgs

    Scopes List<Pulumi.AzureNative.StorageDiscovery.Inputs.StorageDiscoveryScope>
    The scopes of the storage discovery workspace.
    WorkspaceRoots List<string>
    The view level storage discovery data estate
    Description string
    The description of the storage discovery workspace
    Sku string | Pulumi.AzureNative.StorageDiscovery.StorageDiscoverySku
    The storage discovery sku
    Scopes []StorageDiscoveryScope
    The scopes of the storage discovery workspace.
    WorkspaceRoots []string
    The view level storage discovery data estate
    Description string
    The description of the storage discovery workspace
    Sku string | StorageDiscoverySku
    The storage discovery sku
    scopes List<StorageDiscoveryScope>
    The scopes of the storage discovery workspace.
    workspaceRoots List<String>
    The view level storage discovery data estate
    description String
    The description of the storage discovery workspace
    sku String | StorageDiscoverySku
    The storage discovery sku
    scopes StorageDiscoveryScope[]
    The scopes of the storage discovery workspace.
    workspaceRoots string[]
    The view level storage discovery data estate
    description string
    The description of the storage discovery workspace
    sku string | StorageDiscoverySku
    The storage discovery sku
    scopes Sequence[StorageDiscoveryScope]
    The scopes of the storage discovery workspace.
    workspace_roots Sequence[str]
    The view level storage discovery data estate
    description str
    The description of the storage discovery workspace
    sku str | StorageDiscoverySku
    The storage discovery sku
    scopes List<Property Map>
    The scopes of the storage discovery workspace.
    workspaceRoots List<String>
    The view level storage discovery data estate
    description String
    The description of the storage discovery workspace
    sku String | "Standard" | "Free"
    The storage discovery sku

    StorageDiscoveryWorkspacePropertiesResponse, StorageDiscoveryWorkspacePropertiesResponseArgs

    ProvisioningState string
    The status of the last operation.
    Scopes List<Pulumi.AzureNative.StorageDiscovery.Inputs.StorageDiscoveryScopeResponse>
    The scopes of the storage discovery workspace.
    WorkspaceRoots List<string>
    The view level storage discovery data estate
    Description string
    The description of the storage discovery workspace
    Sku string
    The storage discovery sku
    ProvisioningState string
    The status of the last operation.
    Scopes []StorageDiscoveryScopeResponse
    The scopes of the storage discovery workspace.
    WorkspaceRoots []string
    The view level storage discovery data estate
    Description string
    The description of the storage discovery workspace
    Sku string
    The storage discovery sku
    provisioningState String
    The status of the last operation.
    scopes List<StorageDiscoveryScopeResponse>
    The scopes of the storage discovery workspace.
    workspaceRoots List<String>
    The view level storage discovery data estate
    description String
    The description of the storage discovery workspace
    sku String
    The storage discovery sku
    provisioningState string
    The status of the last operation.
    scopes StorageDiscoveryScopeResponse[]
    The scopes of the storage discovery workspace.
    workspaceRoots string[]
    The view level storage discovery data estate
    description string
    The description of the storage discovery workspace
    sku string
    The storage discovery sku
    provisioning_state str
    The status of the last operation.
    scopes Sequence[StorageDiscoveryScopeResponse]
    The scopes of the storage discovery workspace.
    workspace_roots Sequence[str]
    The view level storage discovery data estate
    description str
    The description of the storage discovery workspace
    sku str
    The storage discovery sku
    provisioningState String
    The status of the last operation.
    scopes List<Property Map>
    The scopes of the storage discovery workspace.
    workspaceRoots List<String>
    The view level storage discovery data estate
    description String
    The description of the storage discovery workspace
    sku String
    The storage discovery sku

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:storagediscovery:StorageDiscoveryWorkspace sampleworkspace /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageDiscovery/storageDiscoveryWorkspaces/{storageDiscoveryWorkspaceName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.6.1 published on Friday, Aug 1, 2025 by Pulumi