1. Packages
  2. Azure Native
  3. API Docs
  4. powerbidedicated
  5. CapacityDetails
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.powerbidedicated.CapacityDetails

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    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.

    Other available API versions: 2017-10-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 (
    	"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 pulumi
    import pulumi_azure_native as azure_native
    
    capacity_details = azure_native.powerbidedicated.CapacityDetails("capacityDetails",
        administration=azure_native.powerbidedicated.DedicatedCapacityAdministratorsArgs(
            members=[
                "azsdktest@microsoft.com",
                "azsdktest2@microsoft.com",
            ],
        ),
        dedicated_capacity_name="azsdktest",
        location="West US",
        resource_group_name="TestRG",
        sku=azure_native.powerbidedicated.CapacitySkuArgs(
            name="A1",
            tier=azure_native.powerbidedicated.CapacitySkuTier.PBI_E_AZURE,
        ),
        tags={
            "testKey": "testValue",
        })
    
    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",
        },
    });
    
    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.

    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=azure_native.powerbidedicated.CapacitySkuArgs(
            name="string",
            capacity=0,
            tier="string",
        ),
        administration=azure_native.powerbidedicated.DedicatedCapacityAdministratorsArgs(
            members=["string"],
        ),
        dedicated_capacity_name="string",
        location="string",
        mode="string",
        system_data=azure_native.powerbidedicated.SystemDataArgs(
            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

    The CapacityDetails resource accepts the following input properties:

    ResourceGroupName string
    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.AzureNative.PowerBIDedicated.Inputs.CapacitySku
    The SKU of the PowerBI Dedicated capacity resource.
    Administration Pulumi.AzureNative.PowerBIDedicated.Inputs.DedicatedCapacityAdministrators
    A collection of Dedicated capacity administrators
    DedicatedCapacityName string
    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.AzureNative.PowerBIDedicated.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.AzureNative.PowerBIDedicated.Inputs.SystemData
    Metadata pertaining to creation and last modification of the resource.
    Tags Dictionary<string, string>
    Key-value pairs of additional resource provisioning properties.
    ResourceGroupName string
    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 CapacitySkuArgs
    The SKU of the PowerBI Dedicated capacity resource.
    Administration DedicatedCapacityAdministratorsArgs
    A collection of Dedicated capacity administrators
    DedicatedCapacityName string
    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 SystemDataArgs
    Metadata pertaining to creation and last modification of the resource.
    Tags map[string]string
    Key-value pairs of additional resource provisioning properties.
    resourceGroupName String
    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 DedicatedCapacityAdministrators
    A collection of Dedicated capacity administrators
    dedicatedCapacityName String
    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.
    tags Map<String,String>
    Key-value pairs of additional resource provisioning properties.
    resourceGroupName string
    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 DedicatedCapacityAdministrators
    A collection of Dedicated capacity administrators
    dedicatedCapacityName string
    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.
    tags {[key: string]: string}
    Key-value pairs of additional resource provisioning properties.
    resource_group_name str
    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 CapacitySkuArgs
    The SKU of the PowerBI Dedicated capacity resource.
    administration DedicatedCapacityAdministratorsArgs
    A collection of Dedicated capacity administrators
    dedicated_capacity_name str
    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 SystemDataArgs
    Metadata pertaining to creation and last modification of the resource.
    tags Mapping[str, str]
    Key-value pairs of additional resource provisioning properties.
    resourceGroupName String
    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
    dedicatedCapacityName String
    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.
    tags 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.AzureNative.PowerBIDedicated.CapacitySkuTier
    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 | CapacitySkuTier
    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 | CapacitySkuTier
    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 | CapacitySkuTier
    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 | CapacitySkuTier
    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" | "AutoPremiumHost"
    The name of the Azure pricing tier to which the SKU applies.

    CapacitySkuResponse, CapacitySkuResponseArgs

    Name string
    Name of the SKU level.
    Capacity int
    The capacity of the SKU.
    Tier string
    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
    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
    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
    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
    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
    The name of the Azure pricing tier to which the SKU applies.

    CapacitySkuTier, CapacitySkuTierArgs

    PBIE_Azure
    PBIE_Azure
    Premium
    Premium
    AutoPremiumHost
    AutoPremiumHost
    CapacitySkuTier_PBIE_Azure
    PBIE_Azure
    CapacitySkuTierPremium
    Premium
    CapacitySkuTierAutoPremiumHost
    AutoPremiumHost
    PBIE_Azure
    PBIE_Azure
    Premium
    Premium
    AutoPremiumHost
    AutoPremiumHost
    PBIE_Azure
    PBIE_Azure
    Premium
    Premium
    AutoPremiumHost
    AutoPremiumHost
    PBI_E_AZURE
    PBIE_Azure
    PREMIUM
    Premium
    AUTO_PREMIUM_HOST
    AutoPremiumHost
    "PBIE_Azure"
    PBIE_Azure
    "Premium"
    Premium
    "AutoPremiumHost"
    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
    IdentityTypeUser
    User
    IdentityTypeApplication
    Application
    IdentityTypeManagedIdentity
    ManagedIdentity
    IdentityTypeKey
    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
    CreatedByType string | Pulumi.AzureNative.PowerBIDedicated.IdentityType
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    An identifier for the identity that last modified the resource
    LastModifiedByType string | Pulumi.AzureNative.PowerBIDedicated.IdentityType
    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
    CreatedByType string | IdentityType
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    An identifier for the identity that last modified the resource
    LastModifiedByType string | IdentityType
    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
    createdByType String | IdentityType
    The type of identity that created the resource
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    An identifier for the identity that last modified the resource
    lastModifiedByType String | IdentityType
    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
    createdByType string | IdentityType
    The type of identity that created the resource
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    An identifier for the identity that last modified the resource
    lastModifiedByType string | IdentityType
    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_type str | IdentityType
    The type of identity that created the resource
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    An identifier for the identity that last modified the resource
    last_modified_by_type str | IdentityType
    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
    createdByType String | "User" | "Application" | "ManagedIdentity" | "Key"
    The type of identity that created the resource
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    An identifier for the identity that last modified the resource
    lastModifiedByType String | "User" | "Application" | "ManagedIdentity" | "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
    CreatedByType string
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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
    An identifier for 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: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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi