1. Packages
  2. Azure Native
  3. API Docs
  4. powerbidedicated
  5. AutoScaleVCore
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.8.0 published on Monday, Sep 18, 2023 by Pulumi

azure-native.powerbidedicated.AutoScaleVCore

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.8.0 published on Monday, Sep 18, 2023 by Pulumi

    Represents an instance of an auto scale v-core resource. Azure REST API version: 2021-01-01. Prior API version in Azure Native 1.x: 2021-01-01

    Example Usage

    Create auto scale v-core

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var autoScaleVCore = new AzureNative.PowerBIDedicated.AutoScaleVCore("autoScaleVCore", new()
        {
            CapacityLimit = 10,
            CapacityObjectId = "a28f00bd-5330-4572-88f1-fa883e074785",
            Location = "West US",
            ResourceGroupName = "TestRG",
            Sku = new AzureNative.PowerBIDedicated.Inputs.AutoScaleVCoreSkuArgs
            {
                Capacity = 0,
                Name = "AutoScale",
                Tier = "AutoScale",
            },
            Tags = 
            {
                { "testKey", "testValue" },
            },
            VcoreName = "testvcore",
        });
    
    });
    
    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.NewAutoScaleVCore(ctx, "autoScaleVCore", &powerbidedicated.AutoScaleVCoreArgs{
    			CapacityLimit:     pulumi.Int(10),
    			CapacityObjectId:  pulumi.String("a28f00bd-5330-4572-88f1-fa883e074785"),
    			Location:          pulumi.String("West US"),
    			ResourceGroupName: pulumi.String("TestRG"),
    			Sku: &powerbidedicated.AutoScaleVCoreSkuArgs{
    				Capacity: pulumi.Int(0),
    				Name:     pulumi.String("AutoScale"),
    				Tier:     pulumi.String("AutoScale"),
    			},
    			Tags: pulumi.StringMap{
    				"testKey": pulumi.String("testValue"),
    			},
    			VcoreName: pulumi.String("testvcore"),
    		})
    		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.AutoScaleVCore;
    import com.pulumi.azurenative.powerbidedicated.AutoScaleVCoreArgs;
    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 autoScaleVCore = new AutoScaleVCore("autoScaleVCore", AutoScaleVCoreArgs.builder()        
                .capacityLimit(10)
                .capacityObjectId("a28f00bd-5330-4572-88f1-fa883e074785")
                .location("West US")
                .resourceGroupName("TestRG")
                .sku(Map.ofEntries(
                    Map.entry("capacity", 0),
                    Map.entry("name", "AutoScale"),
                    Map.entry("tier", "AutoScale")
                ))
                .tags(Map.of("testKey", "testValue"))
                .vcoreName("testvcore")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    auto_scale_v_core = azure_native.powerbidedicated.AutoScaleVCore("autoScaleVCore",
        capacity_limit=10,
        capacity_object_id="a28f00bd-5330-4572-88f1-fa883e074785",
        location="West US",
        resource_group_name="TestRG",
        sku=azure_native.powerbidedicated.AutoScaleVCoreSkuArgs(
            capacity=0,
            name="AutoScale",
            tier="AutoScale",
        ),
        tags={
            "testKey": "testValue",
        },
        vcore_name="testvcore")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const autoScaleVCore = new azure_native.powerbidedicated.AutoScaleVCore("autoScaleVCore", {
        capacityLimit: 10,
        capacityObjectId: "a28f00bd-5330-4572-88f1-fa883e074785",
        location: "West US",
        resourceGroupName: "TestRG",
        sku: {
            capacity: 0,
            name: "AutoScale",
            tier: "AutoScale",
        },
        tags: {
            testKey: "testValue",
        },
        vcoreName: "testvcore",
    });
    
    resources:
      autoScaleVCore:
        type: azure-native:powerbidedicated:AutoScaleVCore
        properties:
          capacityLimit: 10
          capacityObjectId: a28f00bd-5330-4572-88f1-fa883e074785
          location: West US
          resourceGroupName: TestRG
          sku:
            capacity: 0
            name: AutoScale
            tier: AutoScale
          tags:
            testKey: testValue
          vcoreName: testvcore
    

    Create AutoScaleVCore Resource

    new AutoScaleVCore(name: string, args: AutoScaleVCoreArgs, opts?: CustomResourceOptions);
    @overload
    def AutoScaleVCore(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       capacity_limit: Optional[int] = None,
                       capacity_object_id: Optional[str] = None,
                       location: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       sku: Optional[AutoScaleVCoreSkuArgs] = None,
                       system_data: Optional[SystemDataArgs] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       vcore_name: Optional[str] = None)
    @overload
    def AutoScaleVCore(resource_name: str,
                       args: AutoScaleVCoreArgs,
                       opts: Optional[ResourceOptions] = None)
    func NewAutoScaleVCore(ctx *Context, name string, args AutoScaleVCoreArgs, opts ...ResourceOption) (*AutoScaleVCore, error)
    public AutoScaleVCore(string name, AutoScaleVCoreArgs args, CustomResourceOptions? opts = null)
    public AutoScaleVCore(String name, AutoScaleVCoreArgs args)
    public AutoScaleVCore(String name, AutoScaleVCoreArgs args, CustomResourceOptions options)
    
    type: azure-native:powerbidedicated:AutoScaleVCore
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AutoScaleVCoreArgs
    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 AutoScaleVCoreArgs
    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 AutoScaleVCoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoScaleVCoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutoScaleVCoreArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AutoScaleVCore 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 AutoScaleVCore 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.AutoScaleVCoreSku

    The SKU of the auto scale v-core resource.

    CapacityLimit int

    The maximum capacity of an auto scale v-core resource.

    CapacityObjectId string

    The object ID of the capacity resource associated with the auto scale v-core resource.

    Location string

    Location of the PowerBI Dedicated resource.

    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.

    VcoreName string

    The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.

    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 AutoScaleVCoreSkuArgs

    The SKU of the auto scale v-core resource.

    CapacityLimit int

    The maximum capacity of an auto scale v-core resource.

    CapacityObjectId string

    The object ID of the capacity resource associated with the auto scale v-core resource.

    Location string

    Location of the PowerBI Dedicated resource.

    SystemData SystemDataArgs

    Metadata pertaining to creation and last modification of the resource.

    Tags map[string]string

    Key-value pairs of additional resource provisioning properties.

    VcoreName string

    The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.

    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 AutoScaleVCoreSku

    The SKU of the auto scale v-core resource.

    capacityLimit Integer

    The maximum capacity of an auto scale v-core resource.

    capacityObjectId String

    The object ID of the capacity resource associated with the auto scale v-core resource.

    location String

    Location of the PowerBI Dedicated resource.

    systemData SystemData

    Metadata pertaining to creation and last modification of the resource.

    tags Map<String,String>

    Key-value pairs of additional resource provisioning properties.

    vcoreName String

    The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.

    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 AutoScaleVCoreSku

    The SKU of the auto scale v-core resource.

    capacityLimit number

    The maximum capacity of an auto scale v-core resource.

    capacityObjectId string

    The object ID of the capacity resource associated with the auto scale v-core resource.

    location string

    Location of the PowerBI Dedicated resource.

    systemData SystemData

    Metadata pertaining to creation and last modification of the resource.

    tags {[key: string]: string}

    Key-value pairs of additional resource provisioning properties.

    vcoreName string

    The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.

    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 AutoScaleVCoreSkuArgs

    The SKU of the auto scale v-core resource.

    capacity_limit int

    The maximum capacity of an auto scale v-core resource.

    capacity_object_id str

    The object ID of the capacity resource associated with the auto scale v-core resource.

    location str

    Location of the PowerBI Dedicated resource.

    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.

    vcore_name str

    The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.

    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 auto scale v-core resource.

    capacityLimit Number

    The maximum capacity of an auto scale v-core resource.

    capacityObjectId String

    The object ID of the capacity resource associated with the auto scale v-core resource.

    location String

    Location of the PowerBI Dedicated resource.

    systemData Property Map

    Metadata pertaining to creation and last modification of the resource.

    tags Map<String>

    Key-value pairs of additional resource provisioning properties.

    vcoreName String

    The name of the auto scale v-core. It must be a minimum of 3 characters, and a maximum of 63.

    Outputs

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

    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 an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.

    Type string

    The type of the PowerBI Dedicated resource.

    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 an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.

    Type string

    The type of the PowerBI Dedicated resource.

    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 an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.

    type String

    The type of the PowerBI Dedicated resource.

    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 an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.

    type string

    The type of the PowerBI Dedicated resource.

    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 an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.

    type str

    The type of the PowerBI Dedicated resource.

    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 an auto scale v-core resource. The provisioningState is to indicate states for resource provisioning.

    type String

    The type of the PowerBI Dedicated resource.

    Supporting Types

    AutoScaleVCoreSku, AutoScaleVCoreSkuArgs

    Name string

    Name of the SKU level.

    Capacity int

    The capacity of an auto scale v-core resource.

    Tier string | Pulumi.AzureNative.PowerBIDedicated.VCoreSkuTier

    The name of the Azure pricing tier to which the SKU applies.

    Name string

    Name of the SKU level.

    Capacity int

    The capacity of an auto scale v-core resource.

    Tier string | VCoreSkuTier

    The name of the Azure pricing tier to which the SKU applies.

    name String

    Name of the SKU level.

    capacity Integer

    The capacity of an auto scale v-core resource.

    tier String | VCoreSkuTier

    The name of the Azure pricing tier to which the SKU applies.

    name string

    Name of the SKU level.

    capacity number

    The capacity of an auto scale v-core resource.

    tier string | VCoreSkuTier

    The name of the Azure pricing tier to which the SKU applies.

    name str

    Name of the SKU level.

    capacity int

    The capacity of an auto scale v-core resource.

    tier str | VCoreSkuTier

    The name of the Azure pricing tier to which the SKU applies.

    name String

    Name of the SKU level.

    capacity Number

    The capacity of an auto scale v-core resource.

    tier String | "AutoScale"

    The name of the Azure pricing tier to which the SKU applies.

    AutoScaleVCoreSkuResponse, AutoScaleVCoreSkuResponseArgs

    Name string

    Name of the SKU level.

    Capacity int

    The capacity of an auto scale v-core resource.

    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 an auto scale v-core resource.

    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 an auto scale v-core resource.

    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 an auto scale v-core resource.

    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 an auto scale v-core resource.

    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 an auto scale v-core resource.

    tier String

    The name of the Azure pricing tier to which the SKU applies.

    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

    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

    VCoreSkuTier, VCoreSkuTierArgs

    AutoScale
    AutoScale
    VCoreSkuTierAutoScale
    AutoScale
    AutoScale
    AutoScale
    AutoScale
    AutoScale
    AUTO_SCALE
    AutoScale
    "AutoScale"
    AutoScale

    Import

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

    $ pulumi import azure-native:powerbidedicated:AutoScaleVCore testvcore /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBIDedicated/autoScaleVCores/{vcoreName} 
    

    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.8.0 published on Monday, Sep 18, 2023 by Pulumi