azure-native.powerbidedicated.CapacityDetails
Explore with Pulumi AI
Represents an instance of a Dedicated Capacity resource. Azure REST API version: 2021-01-01. Prior API version in Azure Native 1.x: 2021-01-01.
Example Usage
Create capacity
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var capacityDetails = new AzureNative.PowerBIDedicated.CapacityDetails("capacityDetails", new()
    {
        Administration = new AzureNative.PowerBIDedicated.Inputs.DedicatedCapacityAdministratorsArgs
        {
            Members = new[]
            {
                "azsdktest@microsoft.com",
                "azsdktest2@microsoft.com",
            },
        },
        DedicatedCapacityName = "azsdktest",
        Location = "West US",
        ResourceGroupName = "TestRG",
        Sku = new AzureNative.PowerBIDedicated.Inputs.CapacitySkuArgs
        {
            Name = "A1",
            Tier = AzureNative.PowerBIDedicated.CapacitySkuTier.PBIE_Azure,
        },
        Tags = 
        {
            { "testKey", "testValue" },
        },
    });
});
package main
import (
	powerbidedicated "github.com/pulumi/pulumi-azure-native-sdk/powerbidedicated/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := powerbidedicated.NewCapacityDetails(ctx, "capacityDetails", &powerbidedicated.CapacityDetailsArgs{
			Administration: &powerbidedicated.DedicatedCapacityAdministratorsArgs{
				Members: pulumi.StringArray{
					pulumi.String("azsdktest@microsoft.com"),
					pulumi.String("azsdktest2@microsoft.com"),
				},
			},
			DedicatedCapacityName: pulumi.String("azsdktest"),
			Location:              pulumi.String("West US"),
			ResourceGroupName:     pulumi.String("TestRG"),
			Sku: &powerbidedicated.CapacitySkuArgs{
				Name: pulumi.String("A1"),
				Tier: pulumi.String(powerbidedicated.CapacitySkuTier_PBIE_Azure),
			},
			Tags: pulumi.StringMap{
				"testKey": pulumi.String("testValue"),
			},
		})
		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.powerbidedicated.CapacityDetails;
import com.pulumi.azurenative.powerbidedicated.CapacityDetailsArgs;
import com.pulumi.azurenative.powerbidedicated.inputs.DedicatedCapacityAdministratorsArgs;
import com.pulumi.azurenative.powerbidedicated.inputs.CapacitySkuArgs;
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 capacityDetails = new CapacityDetails("capacityDetails", CapacityDetailsArgs.builder()
            .administration(DedicatedCapacityAdministratorsArgs.builder()
                .members(                
                    "azsdktest@microsoft.com",
                    "azsdktest2@microsoft.com")
                .build())
            .dedicatedCapacityName("azsdktest")
            .location("West US")
            .resourceGroupName("TestRG")
            .sku(CapacitySkuArgs.builder()
                .name("A1")
                .tier("PBIE_Azure")
                .build())
            .tags(Map.of("testKey", "testValue"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const capacityDetails = new azure_native.powerbidedicated.CapacityDetails("capacityDetails", {
    administration: {
        members: [
            "azsdktest@microsoft.com",
            "azsdktest2@microsoft.com",
        ],
    },
    dedicatedCapacityName: "azsdktest",
    location: "West US",
    resourceGroupName: "TestRG",
    sku: {
        name: "A1",
        tier: azure_native.powerbidedicated.CapacitySkuTier.PBIE_Azure,
    },
    tags: {
        testKey: "testValue",
    },
});
import pulumi
import pulumi_azure_native as azure_native
capacity_details = azure_native.powerbidedicated.CapacityDetails("capacityDetails",
    administration={
        "members": [
            "azsdktest@microsoft.com",
            "azsdktest2@microsoft.com",
        ],
    },
    dedicated_capacity_name="azsdktest",
    location="West US",
    resource_group_name="TestRG",
    sku={
        "name": "A1",
        "tier": azure_native.powerbidedicated.CapacitySkuTier.PBI_E_AZURE,
    },
    tags={
        "testKey": "testValue",
    })
resources:
  capacityDetails:
    type: azure-native:powerbidedicated:CapacityDetails
    properties:
      administration:
        members:
          - azsdktest@microsoft.com
          - azsdktest2@microsoft.com
      dedicatedCapacityName: azsdktest
      location: West US
      resourceGroupName: TestRG
      sku:
        name: A1
        tier: PBIE_Azure
      tags:
        testKey: testValue
Create CapacityDetails Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CapacityDetails(name: string, args: CapacityDetailsArgs, opts?: CustomResourceOptions);@overload
def CapacityDetails(resource_name: str,
                    args: CapacityDetailsArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def CapacityDetails(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    resource_group_name: Optional[str] = None,
                    sku: Optional[CapacitySkuArgs] = None,
                    administration: Optional[DedicatedCapacityAdministratorsArgs] = None,
                    dedicated_capacity_name: Optional[str] = None,
                    location: Optional[str] = None,
                    mode: Optional[Union[str, Mode]] = None,
                    system_data: Optional[SystemDataArgs] = None,
                    tags: Optional[Mapping[str, str]] = None)func NewCapacityDetails(ctx *Context, name string, args CapacityDetailsArgs, opts ...ResourceOption) (*CapacityDetails, error)public CapacityDetails(string name, CapacityDetailsArgs args, CustomResourceOptions? opts = null)
public CapacityDetails(String name, CapacityDetailsArgs args)
public CapacityDetails(String name, CapacityDetailsArgs args, CustomResourceOptions options)
type: azure-native:powerbidedicated:CapacityDetails
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 CapacityDetailsArgs
- 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 CapacityDetailsArgs
- 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 CapacityDetailsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CapacityDetailsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CapacityDetailsArgs
- 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 capacityDetailsResource = new AzureNative.PowerBIDedicated.CapacityDetails("capacityDetailsResource", new()
{
    ResourceGroupName = "string",
    Sku = new AzureNative.PowerBIDedicated.Inputs.CapacitySkuArgs
    {
        Name = "string",
        Capacity = 0,
        Tier = "string",
    },
    Administration = new AzureNative.PowerBIDedicated.Inputs.DedicatedCapacityAdministratorsArgs
    {
        Members = new[]
        {
            "string",
        },
    },
    DedicatedCapacityName = "string",
    Location = "string",
    Mode = "string",
    SystemData = new AzureNative.PowerBIDedicated.Inputs.SystemDataArgs
    {
        CreatedAt = "string",
        CreatedBy = "string",
        CreatedByType = "string",
        LastModifiedAt = "string",
        LastModifiedBy = "string",
        LastModifiedByType = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := powerbidedicated.NewCapacityDetails(ctx, "capacityDetailsResource", &powerbidedicated.CapacityDetailsArgs{
	ResourceGroupName: pulumi.String("string"),
	Sku: &powerbidedicated.CapacitySkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Tier:     pulumi.String("string"),
	},
	Administration: &powerbidedicated.DedicatedCapacityAdministratorsArgs{
		Members: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	DedicatedCapacityName: pulumi.String("string"),
	Location:              pulumi.String("string"),
	Mode:                  pulumi.String("string"),
	SystemData: &powerbidedicated.SystemDataArgs{
		CreatedAt:          pulumi.String("string"),
		CreatedBy:          pulumi.String("string"),
		CreatedByType:      pulumi.String("string"),
		LastModifiedAt:     pulumi.String("string"),
		LastModifiedBy:     pulumi.String("string"),
		LastModifiedByType: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var capacityDetailsResource = new CapacityDetails("capacityDetailsResource", CapacityDetailsArgs.builder()
    .resourceGroupName("string")
    .sku(CapacitySkuArgs.builder()
        .name("string")
        .capacity(0)
        .tier("string")
        .build())
    .administration(DedicatedCapacityAdministratorsArgs.builder()
        .members("string")
        .build())
    .dedicatedCapacityName("string")
    .location("string")
    .mode("string")
    .systemData(SystemDataArgs.builder()
        .createdAt("string")
        .createdBy("string")
        .createdByType("string")
        .lastModifiedAt("string")
        .lastModifiedBy("string")
        .lastModifiedByType("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
capacity_details_resource = azure_native.powerbidedicated.CapacityDetails("capacityDetailsResource",
    resource_group_name="string",
    sku={
        "name": "string",
        "capacity": 0,
        "tier": "string",
    },
    administration={
        "members": ["string"],
    },
    dedicated_capacity_name="string",
    location="string",
    mode="string",
    system_data={
        "created_at": "string",
        "created_by": "string",
        "created_by_type": "string",
        "last_modified_at": "string",
        "last_modified_by": "string",
        "last_modified_by_type": "string",
    },
    tags={
        "string": "string",
    })
const capacityDetailsResource = new azure_native.powerbidedicated.CapacityDetails("capacityDetailsResource", {
    resourceGroupName: "string",
    sku: {
        name: "string",
        capacity: 0,
        tier: "string",
    },
    administration: {
        members: ["string"],
    },
    dedicatedCapacityName: "string",
    location: "string",
    mode: "string",
    systemData: {
        createdAt: "string",
        createdBy: "string",
        createdByType: "string",
        lastModifiedAt: "string",
        lastModifiedBy: "string",
        lastModifiedByType: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:powerbidedicated:CapacityDetails
properties:
    administration:
        members:
            - string
    dedicatedCapacityName: string
    location: string
    mode: string
    resourceGroupName: string
    sku:
        capacity: 0
        name: string
        tier: string
    systemData:
        createdAt: string
        createdBy: string
        createdByType: string
        lastModifiedAt: string
        lastModifiedBy: string
        lastModifiedByType: string
    tags:
        string: string
CapacityDetails 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 CapacityDetails resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
- Sku
Pulumi.Azure Native. Power BIDedicated. Inputs. Capacity Sku 
- The SKU of the PowerBI Dedicated capacity resource.
- Administration
Pulumi.Azure Native. Power BIDedicated. Inputs. Dedicated Capacity Administrators 
- A collection of Dedicated capacity administrators
- DedicatedCapacity stringName 
- The name of the Dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63.
- Location string
- Location of the PowerBI Dedicated resource.
- Mode
string | Pulumi.Azure Native. Power BIDedicated. Mode 
- Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. Learn More
- SystemData Pulumi.Azure Native. Power BIDedicated. Inputs. System Data 
- Metadata pertaining to creation and last modification of the resource.
- Dictionary<string, string>
- Key-value pairs of additional resource provisioning properties.
- ResourceGroup stringName 
- The name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
- Sku
CapacitySku Args 
- The SKU of the PowerBI Dedicated capacity resource.
- Administration
DedicatedCapacity Administrators Args 
- A collection of Dedicated capacity administrators
- DedicatedCapacity stringName 
- The name of the Dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63.
- Location string
- Location of the PowerBI Dedicated resource.
- Mode string | Mode
- Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. Learn More
- SystemData SystemData Args 
- Metadata pertaining to creation and last modification of the resource.
- map[string]string
- Key-value pairs of additional resource provisioning properties.
- resourceGroup StringName 
- The name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
- sku
CapacitySku 
- The SKU of the PowerBI Dedicated capacity resource.
- administration
DedicatedCapacity Administrators 
- A collection of Dedicated capacity administrators
- dedicatedCapacity StringName 
- The name of the Dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63.
- location String
- Location of the PowerBI Dedicated resource.
- mode String | Mode
- Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. Learn More
- systemData SystemData 
- Metadata pertaining to creation and last modification of the resource.
- Map<String,String>
- Key-value pairs of additional resource provisioning properties.
- resourceGroup stringName 
- The name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
- sku
CapacitySku 
- The SKU of the PowerBI Dedicated capacity resource.
- administration
DedicatedCapacity Administrators 
- A collection of Dedicated capacity administrators
- dedicatedCapacity stringName 
- The name of the Dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63.
- location string
- Location of the PowerBI Dedicated resource.
- mode string | Mode
- Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. Learn More
- systemData SystemData 
- Metadata pertaining to creation and last modification of the resource.
- {[key: string]: string}
- Key-value pairs of additional resource provisioning properties.
- resource_group_ strname 
- The name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
- sku
CapacitySku Args 
- The SKU of the PowerBI Dedicated capacity resource.
- administration
DedicatedCapacity Administrators Args 
- A collection of Dedicated capacity administrators
- dedicated_capacity_ strname 
- The name of the Dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63.
- location str
- Location of the PowerBI Dedicated resource.
- mode str | Mode
- Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. Learn More
- system_data SystemData Args 
- Metadata pertaining to creation and last modification of the resource.
- Mapping[str, str]
- Key-value pairs of additional resource provisioning properties.
- resourceGroup StringName 
- The name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
- sku Property Map
- The SKU of the PowerBI Dedicated capacity resource.
- administration Property Map
- A collection of Dedicated capacity administrators
- dedicatedCapacity StringName 
- The name of the Dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63.
- location String
- Location of the PowerBI Dedicated resource.
- mode String | "Gen1" | "Gen2"
- Specifies the generation of the Power BI Embedded capacity. If no value is specified, the default value 'Gen2' is used. Learn More
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- Map<String>
- Key-value pairs of additional resource provisioning properties.
Outputs
All input properties are implicitly available as output properties. Additionally, the CapacityDetails resource produces the following output properties:
- FriendlyName string
- Capacity name
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the PowerBI Dedicated resource.
- ProvisioningState string
- The current deployment state of PowerBI Dedicated resource. The provisioningState is to indicate states for resource provisioning.
- State string
- The current state of PowerBI Dedicated resource. The state is to indicate more states outside of resource provisioning.
- TenantId string
- Tenant ID for the capacity. Used for creating Pro Plus capacity.
- Type string
- The type of the PowerBI Dedicated resource.
- FriendlyName string
- Capacity name
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the PowerBI Dedicated resource.
- ProvisioningState string
- The current deployment state of PowerBI Dedicated resource. The provisioningState is to indicate states for resource provisioning.
- State string
- The current state of PowerBI Dedicated resource. The state is to indicate more states outside of resource provisioning.
- TenantId string
- Tenant ID for the capacity. Used for creating Pro Plus capacity.
- Type string
- The type of the PowerBI Dedicated resource.
- friendlyName String
- Capacity name
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the PowerBI Dedicated resource.
- provisioningState String
- The current deployment state of PowerBI Dedicated resource. The provisioningState is to indicate states for resource provisioning.
- state String
- The current state of PowerBI Dedicated resource. The state is to indicate more states outside of resource provisioning.
- tenantId String
- Tenant ID for the capacity. Used for creating Pro Plus capacity.
- type String
- The type of the PowerBI Dedicated resource.
- friendlyName string
- Capacity name
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the PowerBI Dedicated resource.
- provisioningState string
- The current deployment state of PowerBI Dedicated resource. The provisioningState is to indicate states for resource provisioning.
- state string
- The current state of PowerBI Dedicated resource. The state is to indicate more states outside of resource provisioning.
- tenantId string
- Tenant ID for the capacity. Used for creating Pro Plus capacity.
- type string
- The type of the PowerBI Dedicated resource.
- friendly_name str
- Capacity name
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the PowerBI Dedicated resource.
- provisioning_state str
- The current deployment state of PowerBI Dedicated resource. The provisioningState is to indicate states for resource provisioning.
- state str
- The current state of PowerBI Dedicated resource. The state is to indicate more states outside of resource provisioning.
- tenant_id str
- Tenant ID for the capacity. Used for creating Pro Plus capacity.
- type str
- The type of the PowerBI Dedicated resource.
- friendlyName String
- Capacity name
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the PowerBI Dedicated resource.
- provisioningState String
- The current deployment state of PowerBI Dedicated resource. The provisioningState is to indicate states for resource provisioning.
- state String
- The current state of PowerBI Dedicated resource. The state is to indicate more states outside of resource provisioning.
- tenantId String
- Tenant ID for the capacity. Used for creating Pro Plus capacity.
- type String
- The type of the PowerBI Dedicated resource.
Supporting Types
CapacitySku, CapacitySkuArgs    
- Name string
- Name of the SKU level.
- Capacity int
- The capacity of the SKU.
- Tier
string | Pulumi.Azure Native. Power BIDedicated. Capacity Sku Tier 
- The name of the Azure pricing tier to which the SKU applies.
- Name string
- Name of the SKU level.
- Capacity int
- The capacity of the SKU.
- Tier
string | CapacitySku Tier 
- The name of the Azure pricing tier to which the SKU applies.
- name String
- Name of the SKU level.
- capacity Integer
- The capacity of the SKU.
- tier
String | CapacitySku Tier 
- The name of the Azure pricing tier to which the SKU applies.
- name string
- Name of the SKU level.
- capacity number
- The capacity of the SKU.
- tier
string | CapacitySku Tier 
- The name of the Azure pricing tier to which the SKU applies.
- name str
- Name of the SKU level.
- capacity int
- The capacity of the SKU.
- tier
str | CapacitySku Tier 
- The name of the Azure pricing tier to which the SKU applies.
- name String
- Name of the SKU level.
- capacity Number
- The capacity of the SKU.
- tier
String | "PBIE_Azure" | "Premium" | "AutoPremium Host" 
- The name of the Azure pricing tier to which the SKU applies.
CapacitySkuResponse, CapacitySkuResponseArgs      
CapacitySkuTier, CapacitySkuTierArgs      
- PBIE_Azure
- PBIE_Azure
- Premium
- Premium
- AutoPremium Host 
- AutoPremiumHost
- CapacitySku Tier_PBIE_Azure 
- PBIE_Azure
- CapacitySku Tier Premium 
- Premium
- CapacitySku Tier Auto Premium Host 
- AutoPremiumHost
- PBIE_Azure
- PBIE_Azure
- Premium
- Premium
- AutoPremium Host 
- AutoPremiumHost
- PBIE_Azure
- PBIE_Azure
- Premium
- Premium
- AutoPremium Host 
- AutoPremiumHost
- PBI_E_AZURE
- PBIE_Azure
- PREMIUM
- Premium
- AUTO_PREMIUM_HOST
- AutoPremiumHost
- "PBIE_Azure"
- PBIE_Azure
- "Premium"
- Premium
- "AutoPremium Host" 
- AutoPremiumHost
DedicatedCapacityAdministrators, DedicatedCapacityAdministratorsArgs      
- Members List<string>
- An array of administrator user identities.
- Members []string
- An array of administrator user identities.
- members List<String>
- An array of administrator user identities.
- members string[]
- An array of administrator user identities.
- members Sequence[str]
- An array of administrator user identities.
- members List<String>
- An array of administrator user identities.
DedicatedCapacityAdministratorsResponse, DedicatedCapacityAdministratorsResponseArgs        
- Members List<string>
- An array of administrator user identities.
- Members []string
- An array of administrator user identities.
- members List<String>
- An array of administrator user identities.
- members string[]
- An array of administrator user identities.
- members Sequence[str]
- An array of administrator user identities.
- members List<String>
- An array of administrator user identities.
IdentityType, IdentityTypeArgs    
- User
- User
- Application
- Application
- ManagedIdentity 
- ManagedIdentity
- Key
- Key
- IdentityType User 
- User
- IdentityType Application 
- Application
- IdentityType Managed Identity 
- ManagedIdentity
- IdentityType Key 
- Key
- User
- User
- Application
- Application
- ManagedIdentity 
- ManagedIdentity
- Key
- Key
- User
- User
- Application
- Application
- ManagedIdentity 
- ManagedIdentity
- Key
- Key
- USER
- User
- APPLICATION
- Application
- MANAGED_IDENTITY
- ManagedIdentity
- KEY
- Key
- "User"
- User
- "Application"
- Application
- "ManagedIdentity" 
- ManagedIdentity
- "Key"
- Key
Mode, ModeArgs  
- Gen1
- Gen1
- Gen2
- Gen2
- ModeGen1 
- Gen1
- ModeGen2 
- Gen2
- Gen1
- Gen1
- Gen2
- Gen2
- Gen1
- Gen1
- Gen2
- Gen2
- GEN1
- Gen1
- GEN2
- Gen2
- "Gen1"
- Gen1
- "Gen2"
- Gen2
SystemData, SystemDataArgs    
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for the identity that created the resource
- CreatedBy string | Pulumi.Type Azure Native. Power BIDedicated. Identity Type 
- The type of identity that created the resource
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- An identifier for the identity that last modified the resource
- LastModified string | Pulumi.By Type Azure Native. Power BIDedicated. Identity Type 
- The type of identity that last modified the resource
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for the identity that created the resource
- CreatedBy string | IdentityType Type 
- The type of identity that created the resource
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- An identifier for the identity that last modified the resource
- LastModified string | IdentityBy Type Type 
- The type of identity that last modified the resource
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- An identifier for the identity that created the resource
- createdBy String | IdentityType Type 
- The type of identity that created the resource
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- An identifier for the identity that last modified the resource
- lastModified String | IdentityBy Type Type 
- The type of identity that last modified the resource
- createdAt string
- The timestamp of resource creation (UTC)
- createdBy string
- An identifier for the identity that created the resource
- createdBy string | IdentityType Type 
- The type of identity that created the resource
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- An identifier for the identity that last modified the resource
- lastModified string | IdentityBy Type Type 
- The type of identity that last modified the resource
- created_at str
- The timestamp of resource creation (UTC)
- created_by str
- An identifier for the identity that created the resource
- created_by_ str | Identitytype Type 
- The type of identity that created the resource
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- An identifier for the identity that last modified the resource
- last_modified_ str | Identityby_ type Type 
- The type of identity that last modified the resource
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- An identifier for the identity that created the resource
- createdBy String | "User" | "Application" | "ManagedType Identity" | "Key" 
- The type of identity that created the resource
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- An identifier for the identity that last modified the resource
- lastModified String | "User" | "Application" | "ManagedBy Type Identity" | "Key" 
- The type of identity that last modified the resource
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for the identity that created the resource
- CreatedBy stringType 
- The type of identity that created the resource
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- An identifier for the identity that last modified the resource
- LastModified stringBy Type 
- The type of identity that last modified the resource
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for the identity that created the resource
- CreatedBy stringType 
- The type of identity that created the resource
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- An identifier for the identity that last modified the resource
- LastModified stringBy Type 
- The type of identity that last modified the resource
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- An identifier for the identity that created the resource
- createdBy StringType 
- The type of identity that created the resource
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- An identifier for the identity that last modified the resource
- lastModified StringBy Type 
- The type of identity that last modified the resource
- createdAt string
- The timestamp of resource creation (UTC)
- createdBy string
- An identifier for the identity that created the resource
- createdBy stringType 
- The type of identity that created the resource
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- An identifier for the identity that last modified the resource
- lastModified stringBy Type 
- The type of identity that last modified the resource
- created_at str
- The timestamp of resource creation (UTC)
- created_by str
- An identifier for 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 
- An identifier for the identity that last modified the resource
- last_modified_ strby_ type 
- The type of identity that last modified the resource
- createdAt String
- The timestamp of resource creation (UTC)
- createdBy String
- An identifier for the identity that created the resource
- createdBy StringType 
- The type of identity that created the resource
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- An identifier for the identity that last modified the resource
- lastModified 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:powerbidedicated:CapacityDetails azsdktest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/capacities/{dedicatedCapacityName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0