azure-native.powerbidedicated.CapacityDetails
Explore with Pulumi AI
Represents an instance of a Dedicated Capacity resource. API Version: 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 = "PBIE_Azure",
},
Tags =
{
{ "testKey", "testValue" },
},
});
});
package main
import (
powerbidedicated "github.com/pulumi/pulumi-azure-native-sdk/powerbidedicated"
"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("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 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(Map.of("members",
"azsdktest@microsoft.com",
"azsdktest2@microsoft.com"))
.dedicatedCapacityName("azsdktest")
.location("West US")
.resourceGroupName("TestRG")
.sku(Map.ofEntries(
Map.entry("name", "A1"),
Map.entry("tier", "PBIE_Azure")
))
.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="PBIE_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: "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.
Constructor example
The following reference example uses placeholder values for all input properties.
var capacityDetailsResource = new AzureNative.Powerbidedicated.CapacityDetails("capacityDetailsResource", new()
{
ResourceGroupName = "string",
Sku =
{
{ "name", "string" },
{ "capacity", 0 },
{ "tier", "string" },
},
Administration =
{
{ "members", new[]
{
"string",
} },
},
DedicatedCapacityName = "string",
Location = "string",
Mode = "string",
SystemData =
{
{ "createdAt", "string" },
{ "createdBy", "string" },
{ "createdByType", "string" },
{ "lastModifiedAt", "string" },
{ "lastModifiedBy", "string" },
{ "lastModifiedByType", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := powerbidedicated.NewCapacityDetails(ctx, "capacityDetailsResource", &powerbidedicated.CapacityDetailsArgs{
ResourceGroupName: "string",
Sku: map[string]interface{}{
"name": "string",
"capacity": 0,
"tier": "string",
},
Administration: map[string]interface{}{
"members": []string{
"string",
},
},
DedicatedCapacityName: "string",
Location: "string",
Mode: "string",
SystemData: map[string]interface{}{
"createdAt": "string",
"createdBy": "string",
"createdByType": "string",
"lastModifiedAt": "string",
"lastModifiedBy": "string",
"lastModifiedByType": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var capacityDetailsResource = new CapacityDetails("capacityDetailsResource", CapacityDetailsArgs.builder()
.resourceGroupName("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.administration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.dedicatedCapacityName("string")
.location("string")
.mode("string")
.systemData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.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={
createdAt: string,
createdBy: string,
createdByType: string,
lastModifiedAt: string,
lastModifiedBy: string,
lastModifiedByType: 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:
- Resource
Group 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
- Dedicated
Capacity 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
- System
Data 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.
- Resource
Group 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
Capacity
Sku Args - The SKU of the PowerBI Dedicated capacity resource.
- Administration
Dedicated
Capacity Administrators Args - A collection of Dedicated capacity administrators
- Dedicated
Capacity 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
- System
Data SystemData Args - Metadata pertaining to creation and last modification of the resource.
- map[string]string
- Key-value pairs of additional resource provisioning properties.
- resource
Group 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
Capacity
Sku - The SKU of the PowerBI Dedicated capacity resource.
- administration
Dedicated
Capacity Administrators - A collection of Dedicated capacity administrators
- dedicated
Capacity 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
- system
Data SystemData - Metadata pertaining to creation and last modification of the resource.
- Map<String,String>
- Key-value pairs of additional resource provisioning properties.
- resource
Group 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
Capacity
Sku - The SKU of the PowerBI Dedicated capacity resource.
- administration
Dedicated
Capacity Administrators - A collection of Dedicated capacity administrators
- dedicated
Capacity 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
- system
Data 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
Capacity
Sku Args - The SKU of the PowerBI Dedicated capacity resource.
- administration
Dedicated
Capacity 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.
- resource
Group 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
- dedicated
Capacity 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
- system
Data 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:
- Friendly
Name string - Capacity name
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the PowerBI Dedicated resource.
- Provisioning
State 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.
- Tenant
Id string - Tenant ID for the capacity. Used for creating Pro Plus capacity.
- Type string
- The type of the PowerBI Dedicated resource.
- Friendly
Name string - Capacity name
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the PowerBI Dedicated resource.
- Provisioning
State 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.
- Tenant
Id string - Tenant ID for the capacity. Used for creating Pro Plus capacity.
- Type string
- The type of the PowerBI Dedicated resource.
- friendly
Name String - Capacity name
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the PowerBI Dedicated resource.
- provisioning
State 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.
- tenant
Id String - Tenant ID for the capacity. Used for creating Pro Plus capacity.
- type String
- The type of the PowerBI Dedicated resource.
- friendly
Name string - Capacity name
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the PowerBI Dedicated resource.
- provisioning
State 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.
- tenant
Id 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.
- friendly
Name String - Capacity name
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the PowerBI Dedicated resource.
- provisioning
State 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.
- tenant
Id 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 | Capacity
Sku 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 | Capacity
Sku 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 | Capacity
Sku 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 | Capacity
Sku 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" | "Auto
Premium Host" - The name of the Azure pricing tier to which the SKU applies.
CapacitySkuResponse, CapacitySkuResponseArgs
CapacitySkuTier, CapacitySkuTierArgs
- PBIE_Azure
- PBIE_Azure
- Premium
- Premium
- Auto
Premium Host - AutoPremiumHost
- Capacity
Sku Tier_PBIE_Azure - PBIE_Azure
- Capacity
Sku Tier Premium - Premium
- Capacity
Sku Tier Auto Premium Host - AutoPremiumHost
- PBIE_Azure
- PBIE_Azure
- Premium
- Premium
- Auto
Premium Host - AutoPremiumHost
- PBIE_Azure
- PBIE_Azure
- Premium
- Premium
- Auto
Premium Host - AutoPremiumHost
- PBI_E_AZURE
- PBIE_Azure
- PREMIUM
- Premium
- AUTO_PREMIUM_HOST
- AutoPremiumHost
- "PBIE_Azure"
- PBIE_Azure
- "Premium"
- Premium
- "Auto
Premium 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
- Managed
Identity - ManagedIdentity
- Key
- Key
- Identity
Type User - User
- Identity
Type Application - Application
- Identity
Type Managed Identity - ManagedIdentity
- Identity
Type Key - Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- User
- User
- Application
- Application
- Managed
Identity - ManagedIdentity
- Key
- Key
- USER
- User
- APPLICATION
- Application
- MANAGED_IDENTITY
- ManagedIdentity
- KEY
- Key
- "User"
- User
- "Application"
- Application
- "Managed
Identity" - ManagedIdentity
- "Key"
- Key
Mode, ModeArgs
- Gen1
- Gen1
- Gen2
- Gen2
- Mode
Gen1 - Gen1
- Mode
Gen2 - Gen2
- Gen1
- Gen1
- Gen2
- Gen2
- Gen1
- Gen1
- Gen2
- Gen2
- GEN1
- Gen1
- GEN2
- Gen2
- "Gen1"
- Gen1
- "Gen2"
- Gen2
SystemData, SystemDataArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By string | Pulumi.Type Azure Native. Power BIDedicated. Identity Type - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified string | Pulumi.By Type Azure Native. Power BIDedicated. Identity Type - The type of identity that last modified the resource
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By string | IdentityType Type - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified string | IdentityBy Type Type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By String | IdentityType Type - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified String | IdentityBy Type Type - The type of identity that last modified the resource
- created
At string - The timestamp of resource creation (UTC)
- created
By string - An identifier for the identity that created the resource
- created
By string | IdentityType Type - The type of identity that created the resource
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - An identifier for the identity that last modified the resource
- last
Modified 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
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By String | "User" | "Application" | "ManagedType Identity" | "Key" - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified String | "User" | "Application" | "ManagedBy Type Identity" | "Key" - The type of identity that last modified the resource
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
- created
At string - The timestamp of resource creation (UTC)
- created
By string - An identifier for the identity that created the resource
- created
By stringType - The type of identity that created the resource
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - An identifier for the identity that last modified the resource
- last
Modified stringBy Type - The type of identity that last modified the resource
- created_
at str - The timestamp of resource creation (UTC)
- created_
by str - 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
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:powerbidedicated:CapacityDetails azsdktest /subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.PowerBIDedicated/capacities/azsdktest
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0