azure-native.storagediscovery.StorageDiscoveryWorkspace
Explore with Pulumi AI
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Storage Discovery. Inputs. Storage Discovery Workspace Properties - The resource-specific properties for this resource.
- Storage
Discovery stringWorkspace Name - The name of the StorageDiscoveryWorkspace
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Properties
Storage
Discovery Workspace Properties Args - The resource-specific properties for this resource.
- Storage
Discovery stringWorkspace Name - The name of the StorageDiscoveryWorkspace
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- properties
Storage
Discovery Workspace Properties - The resource-specific properties for this resource.
- storage
Discovery StringWorkspace Name - The name of the StorageDiscoveryWorkspace
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- properties
Storage
Discovery Workspace Properties - The resource-specific properties for this resource.
- storage
Discovery stringWorkspace Name - The name of the StorageDiscoveryWorkspace
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- properties
Storage
Discovery Workspace Properties Args - The resource-specific properties for this resource.
- storage_
discovery_ strworkspace_ name - The name of the StorageDiscoveryWorkspace
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - 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.
- storage
Discovery StringWorkspace Name - The name of the StorageDiscoveryWorkspace
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageDiscoveryWorkspace resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Storage Discovery. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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
- Storage
Accounts - Microsoft.Storage/storageAccountsStorage Account Resource Type
- Storage
Discovery Resource Type Storage Accounts - Microsoft.Storage/storageAccountsStorage Account Resource Type
- Storage
Accounts - Microsoft.Storage/storageAccountsStorage Account Resource Type
- Storage
Accounts - Microsoft.Storage/storageAccountsStorage Account Resource Type
- STORAGE_ACCOUNTS
- Microsoft.Storage/storageAccountsStorage Account Resource Type
- "Microsoft.
Storage/storage Accounts" - Microsoft.Storage/storageAccountsStorage Account Resource Type
StorageDiscoveryScope, StorageDiscoveryScopeArgs
- Display
Name string - Display name of the collection
- Resource
Types List<Union<string, Pulumi.Azure Native. Storage Discovery. Storage Discovery Resource Type>> - Resource types for the collection
- Tag
Keys List<string>Only - The storage account tags keys to filter
- Dictionary<string, string>
- Resource tags.
- Display
Name string - Display name of the collection
- Resource
Types []string - Resource types for the collection
- Tag
Keys []stringOnly - The storage account tags keys to filter
- map[string]string
- Resource tags.
- display
Name String - Display name of the collection
- resource
Types List<Either<String,StorageDiscovery Resource Type>> - Resource types for the collection
- tag
Keys List<String>Only - The storage account tags keys to filter
- Map<String,String>
- Resource tags.
- display
Name string - Display name of the collection
- resource
Types (string | StorageDiscovery Resource Type)[] - Resource types for the collection
- tag
Keys string[]Only - The storage account tags keys to filter
- {[key: string]: string}
- Resource tags.
- display_
name str - Display name of the collection
- resource_
types Sequence[Union[str, StorageDiscovery Resource Type]] - Resource types for the collection
- tag_
keys_ Sequence[str]only - The storage account tags keys to filter
- Mapping[str, str]
- Resource tags.
- display
Name String - Display name of the collection
- resource
Types List<String | "Microsoft.Storage/storage Accounts"> - Resource types for the collection
- tag
Keys List<String>Only - The storage account tags keys to filter
- Map<String>
- Resource tags.
StorageDiscoveryScopeResponse, StorageDiscoveryScopeResponseArgs
- Display
Name string - Display name of the collection
- Resource
Types List<string> - Resource types for the collection
- Tag
Keys List<string>Only - The storage account tags keys to filter
- Dictionary<string, string>
- Resource tags.
- Display
Name string - Display name of the collection
- Resource
Types []string - Resource types for the collection
- Tag
Keys []stringOnly - The storage account tags keys to filter
- map[string]string
- Resource tags.
- display
Name String - Display name of the collection
- resource
Types List<String> - Resource types for the collection
- tag
Keys List<String>Only - The storage account tags keys to filter
- Map<String,String>
- Resource tags.
- display
Name string - Display name of the collection
- resource
Types string[] - Resource types for the collection
- tag
Keys string[]Only - The storage account tags keys to filter
- {[key: string]: string}
- Resource tags.
- display_
name str - Display name of the collection
- resource_
types Sequence[str] - Resource types for the collection
- tag_
keys_ Sequence[str]only - The storage account tags keys to filter
- Mapping[str, str]
- Resource tags.
- display
Name String - Display name of the collection
- resource
Types List<String> - Resource types for the collection
- tag
Keys List<String>Only - The storage account tags keys to filter
- Map<String>
- Resource tags.
StorageDiscoverySku, StorageDiscoverySkuArgs
- Standard
- StandardStandard Sku
- Free
- FreeFree Sku
- Storage
Discovery Sku Standard - StandardStandard Sku
- Storage
Discovery Sku Free - 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.
Azure Native. Storage Discovery. Inputs. Storage Discovery Scope> - The scopes of the storage discovery workspace.
- Workspace
Roots List<string> - The view level storage discovery data estate
- Description string
- The description of the storage discovery workspace
- Sku
string | Pulumi.
Azure Native. Storage Discovery. Storage Discovery Sku - The storage discovery sku
- Scopes
[]Storage
Discovery Scope - The scopes of the storage discovery workspace.
- Workspace
Roots []string - The view level storage discovery data estate
- Description string
- The description of the storage discovery workspace
- Sku
string | Storage
Discovery Sku - The storage discovery sku
- scopes
List<Storage
Discovery Scope> - The scopes of the storage discovery workspace.
- workspace
Roots List<String> - The view level storage discovery data estate
- description String
- The description of the storage discovery workspace
- sku
String | Storage
Discovery Sku - The storage discovery sku
- scopes
Storage
Discovery Scope[] - The scopes of the storage discovery workspace.
- workspace
Roots string[] - The view level storage discovery data estate
- description string
- The description of the storage discovery workspace
- sku
string | Storage
Discovery Sku - The storage discovery sku
- scopes
Sequence[Storage
Discovery Scope] - 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 | Storage
Discovery Sku - The storage discovery sku
- scopes List<Property Map>
- The scopes of the storage discovery workspace.
- workspace
Roots 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
- Provisioning
State string - The status of the last operation.
- Scopes
List<Pulumi.
Azure Native. Storage Discovery. Inputs. Storage Discovery Scope Response> - The scopes of the storage discovery workspace.
- Workspace
Roots List<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 string - The status of the last operation.
- Scopes
[]Storage
Discovery Scope Response - The scopes of the storage discovery workspace.
- Workspace
Roots []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 String - The status of the last operation.
- scopes
List<Storage
Discovery Scope Response> - The scopes of the storage discovery workspace.
- workspace
Roots List<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 string - The status of the last operation.
- scopes
Storage
Discovery Scope Response[] - The scopes of the storage discovery workspace.
- workspace
Roots 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[Storage
Discovery Scope Response] - 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
- provisioning
State String - The status of the last operation.
- scopes List<Property Map>
- The scopes of the storage discovery workspace.
- workspace
Roots 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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