1. Packages
  2. Azure Native
  3. API Docs
  4. resources
  5. Resource
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.resources.Resource

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Resource information.

Uses Azure REST API version 2024-03-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.

Other available API versions: 2020-10-01, 2021-01-01, 2021-04-01, 2022-09-01, 2023-07-01, 2024-07-01, 2024-11-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native resources [ApiVersion]. See the version guide for details.

Import

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

$ pulumi import azure-native:resources:Resource myresource1 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{parentResourcePath}/{resourceType}/{resourceName} 
Copy

Create Resource Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Resource(name: string, args: ResourceArgs, opts?: CustomResourceOptions);
@overload
def Resource(resource_name: str,
             args: ResourceArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def Resource(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             resource_group_name: Optional[str] = None,
             parent_resource_path: Optional[str] = None,
             resource_type: Optional[str] = None,
             resource_provider_namespace: Optional[str] = None,
             api_version: Optional[str] = None,
             properties: Optional[Any] = None,
             extended_location: Optional[ExtendedLocationArgs] = None,
             plan: Optional[PlanArgs] = None,
             managed_by: Optional[str] = None,
             location: Optional[str] = None,
             resource_name_: Optional[str] = None,
             kind: Optional[str] = None,
             identity: Optional[IdentityArgs] = None,
             sku: Optional[SkuArgs] = None,
             tags: Optional[Mapping[str, str]] = None)
func NewResource(ctx *Context, name string, args ResourceArgs, opts ...ResourceOption) (*Resource, error)
public Resource(string name, ResourceArgs args, CustomResourceOptions? opts = null)
public Resource(String name, ResourceArgs args)
public Resource(String name, ResourceArgs args, CustomResourceOptions options)
type: azure-native:resources:Resource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ResourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ResourceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ResourceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ResourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ResourceArgs
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 resourceResource = new AzureNative.Resources.Resource("resourceResource", new()
{
    ResourceGroupName = "string",
    ParentResourcePath = "string",
    ResourceType = "string",
    ResourceProviderNamespace = "string",
    ApiVersion = "string",
    Properties = "any",
    ExtendedLocation = new AzureNative.Resources.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    Plan = new AzureNative.Resources.Inputs.PlanArgs
    {
        Name = "string",
        Product = "string",
        PromotionCode = "string",
        Publisher = "string",
        Version = "string",
    },
    ManagedBy = "string",
    Location = "string",
    ResourceName = "string",
    Kind = "string",
    Identity = new AzureNative.Resources.Inputs.IdentityArgs
    {
        Type = AzureNative.Resources.ResourceIdentityType.SystemAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Sku = new AzureNative.Resources.Inputs.SkuArgs
    {
        Capacity = 0,
        Family = "string",
        Model = "string",
        Name = "string",
        Size = "string",
        Tier = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := resources.NewResource(ctx, "resourceResource", &resources.ResourceArgs{
	ResourceGroupName:         pulumi.String("string"),
	ParentResourcePath:        pulumi.String("string"),
	ResourceType:              pulumi.String("string"),
	ResourceProviderNamespace: pulumi.String("string"),
	ApiVersion:                pulumi.String("string"),
	Properties:                pulumi.Any("any"),
	ExtendedLocation: &resources.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	Plan: &resources.PlanArgs{
		Name:          pulumi.String("string"),
		Product:       pulumi.String("string"),
		PromotionCode: pulumi.String("string"),
		Publisher:     pulumi.String("string"),
		Version:       pulumi.String("string"),
	},
	ManagedBy:    pulumi.String("string"),
	Location:     pulumi.String("string"),
	ResourceName: pulumi.String("string"),
	Kind:         pulumi.String("string"),
	Identity: &resources.IdentityArgs{
		Type: resources.ResourceIdentityTypeSystemAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Sku: &resources.SkuArgs{
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Model:    pulumi.String("string"),
		Name:     pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var resourceResource = new Resource("resourceResource", ResourceArgs.builder()
    .resourceGroupName("string")
    .parentResourcePath("string")
    .resourceType("string")
    .resourceProviderNamespace("string")
    .apiVersion("string")
    .properties("any")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .plan(PlanArgs.builder()
        .name("string")
        .product("string")
        .promotionCode("string")
        .publisher("string")
        .version("string")
        .build())
    .managedBy("string")
    .location("string")
    .resourceName("string")
    .kind("string")
    .identity(IdentityArgs.builder()
        .type("SystemAssigned")
        .userAssignedIdentities("string")
        .build())
    .sku(SkuArgs.builder()
        .capacity(0)
        .family("string")
        .model("string")
        .name("string")
        .size("string")
        .tier("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
resource_resource = azure_native.resources.Resource("resourceResource",
    resource_group_name="string",
    parent_resource_path="string",
    resource_type="string",
    resource_provider_namespace="string",
    api_version="string",
    properties="any",
    extended_location={
        "name": "string",
        "type": "string",
    },
    plan={
        "name": "string",
        "product": "string",
        "promotion_code": "string",
        "publisher": "string",
        "version": "string",
    },
    managed_by="string",
    location="string",
    resource_name_="string",
    kind="string",
    identity={
        "type": azure_native.resources.ResourceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    sku={
        "capacity": 0,
        "family": "string",
        "model": "string",
        "name": "string",
        "size": "string",
        "tier": "string",
    },
    tags={
        "string": "string",
    })
Copy
const resourceResource = new azure_native.resources.Resource("resourceResource", {
    resourceGroupName: "string",
    parentResourcePath: "string",
    resourceType: "string",
    resourceProviderNamespace: "string",
    apiVersion: "string",
    properties: "any",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    plan: {
        name: "string",
        product: "string",
        promotionCode: "string",
        publisher: "string",
        version: "string",
    },
    managedBy: "string",
    location: "string",
    resourceName: "string",
    kind: "string",
    identity: {
        type: azure_native.resources.ResourceIdentityType.SystemAssigned,
        userAssignedIdentities: ["string"],
    },
    sku: {
        capacity: 0,
        family: "string",
        model: "string",
        name: "string",
        size: "string",
        tier: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:resources:Resource
properties:
    apiVersion: string
    extendedLocation:
        name: string
        type: string
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    kind: string
    location: string
    managedBy: string
    parentResourcePath: string
    plan:
        name: string
        product: string
        promotionCode: string
        publisher: string
        version: string
    properties: any
    resourceGroupName: string
    resourceName: string
    resourceProviderNamespace: string
    resourceType: string
    sku:
        capacity: 0
        family: string
        model: string
        name: string
        size: string
        tier: string
    tags:
        string: string
Copy

Resource Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Resource resource accepts the following input properties:

ApiVersion This property is required. string
The API version to use for the operation.
ParentResourcePath
This property is required.
Changes to this property will trigger replacement.
string
The parent resource identity.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group for the resource. The name is case insensitive.
ResourceProviderNamespace
This property is required.
Changes to this property will trigger replacement.
string
The namespace of the resource provider.
ResourceType
This property is required.
Changes to this property will trigger replacement.
string
The resource type of the resource to create.
ExtendedLocation Changes to this property will trigger replacement. Pulumi.AzureNative.Resources.Inputs.ExtendedLocation
Resource extended location.
Identity Pulumi.AzureNative.Resources.Inputs.Identity
The identity of the resource.
Kind string
The kind of the resource.
Location string
Resource location
ManagedBy string
ID of the resource that manages this resource.
Plan Pulumi.AzureNative.Resources.Inputs.Plan
The plan of the resource.
Properties object
The resource properties.
ResourceName Changes to this property will trigger replacement. string
The name of the resource to create.
Sku Pulumi.AzureNative.Resources.Inputs.Sku
The SKU of the resource.
Tags Dictionary<string, string>
Resource tags
ApiVersion This property is required. string
The API version to use for the operation.
ParentResourcePath
This property is required.
Changes to this property will trigger replacement.
string
The parent resource identity.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group for the resource. The name is case insensitive.
ResourceProviderNamespace
This property is required.
Changes to this property will trigger replacement.
string
The namespace of the resource provider.
ResourceType
This property is required.
Changes to this property will trigger replacement.
string
The resource type of the resource to create.
ExtendedLocation Changes to this property will trigger replacement. ExtendedLocationArgs
Resource extended location.
Identity IdentityArgs
The identity of the resource.
Kind string
The kind of the resource.
Location string
Resource location
ManagedBy string
ID of the resource that manages this resource.
Plan PlanArgs
The plan of the resource.
Properties interface{}
The resource properties.
ResourceName Changes to this property will trigger replacement. string
The name of the resource to create.
Sku SkuArgs
The SKU of the resource.
Tags map[string]string
Resource tags
apiVersion This property is required. String
The API version to use for the operation.
parentResourcePath
This property is required.
Changes to this property will trigger replacement.
String
The parent resource identity.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group for the resource. The name is case insensitive.
resourceProviderNamespace
This property is required.
Changes to this property will trigger replacement.
String
The namespace of the resource provider.
resourceType
This property is required.
Changes to this property will trigger replacement.
String
The resource type of the resource to create.
extendedLocation Changes to this property will trigger replacement. ExtendedLocation
Resource extended location.
identity Identity
The identity of the resource.
kind String
The kind of the resource.
location String
Resource location
managedBy String
ID of the resource that manages this resource.
plan Plan
The plan of the resource.
properties Object
The resource properties.
resourceName Changes to this property will trigger replacement. String
The name of the resource to create.
sku Sku
The SKU of the resource.
tags Map<String,String>
Resource tags
apiVersion This property is required. string
The API version to use for the operation.
parentResourcePath
This property is required.
Changes to this property will trigger replacement.
string
The parent resource identity.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group for the resource. The name is case insensitive.
resourceProviderNamespace
This property is required.
Changes to this property will trigger replacement.
string
The namespace of the resource provider.
resourceType
This property is required.
Changes to this property will trigger replacement.
string
The resource type of the resource to create.
extendedLocation Changes to this property will trigger replacement. ExtendedLocation
Resource extended location.
identity Identity
The identity of the resource.
kind string
The kind of the resource.
location string
Resource location
managedBy string
ID of the resource that manages this resource.
plan Plan
The plan of the resource.
properties any
The resource properties.
resourceName Changes to this property will trigger replacement. string
The name of the resource to create.
sku Sku
The SKU of the resource.
tags {[key: string]: string}
Resource tags
api_version This property is required. str
The API version to use for the operation.
parent_resource_path
This property is required.
Changes to this property will trigger replacement.
str
The parent resource identity.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group for the resource. The name is case insensitive.
resource_provider_namespace
This property is required.
Changes to this property will trigger replacement.
str
The namespace of the resource provider.
resource_type
This property is required.
Changes to this property will trigger replacement.
str
The resource type of the resource to create.
extended_location Changes to this property will trigger replacement. ExtendedLocationArgs
Resource extended location.
identity IdentityArgs
The identity of the resource.
kind str
The kind of the resource.
location str
Resource location
managed_by str
ID of the resource that manages this resource.
plan PlanArgs
The plan of the resource.
properties Any
The resource properties.
resource_name Changes to this property will trigger replacement. str
The name of the resource to create.
sku SkuArgs
The SKU of the resource.
tags Mapping[str, str]
Resource tags
apiVersion This property is required. String
The API version to use for the operation.
parentResourcePath
This property is required.
Changes to this property will trigger replacement.
String
The parent resource identity.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group for the resource. The name is case insensitive.
resourceProviderNamespace
This property is required.
Changes to this property will trigger replacement.
String
The namespace of the resource provider.
resourceType
This property is required.
Changes to this property will trigger replacement.
String
The resource type of the resource to create.
extendedLocation Changes to this property will trigger replacement. Property Map
Resource extended location.
identity Property Map
The identity of the resource.
kind String
The kind of the resource.
location String
Resource location
managedBy String
ID of the resource that manages this resource.
plan Property Map
The plan of the resource.
properties Any
The resource properties.
resourceName Changes to this property will trigger replacement. String
The name of the resource to create.
sku Property Map
The SKU of the resource.
tags Map<String>
Resource tags

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name
Type string
Resource type
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name
Type string
Resource type
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name
type String
Resource type
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name
type string
Resource type
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name
type str
Resource type
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name
type String
Resource type

Supporting Types

ExtendedLocation
, ExtendedLocationArgs

Name string
The extended location name.
Type string | Pulumi.AzureNative.Resources.ExtendedLocationType
The extended location type.
Name string
The extended location name.
Type string | ExtendedLocationType
The extended location type.
name String
The extended location name.
type String | ExtendedLocationType
The extended location type.
name string
The extended location name.
type string | ExtendedLocationType
The extended location type.
name str
The extended location name.
type str | ExtendedLocationType
The extended location type.
name String
The extended location name.
type String | "EdgeZone"
The extended location type.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

Name string
The extended location name.
Type string
The extended location type.
Name string
The extended location name.
Type string
The extended location type.
name String
The extended location name.
type String
The extended location type.
name string
The extended location name.
type string
The extended location type.
name str
The extended location name.
type str
The extended location type.
name String
The extended location name.
type String
The extended location type.

ExtendedLocationType
, ExtendedLocationTypeArgs

EdgeZone
EdgeZone
ExtendedLocationTypeEdgeZone
EdgeZone
EdgeZone
EdgeZone
EdgeZone
EdgeZone
EDGE_ZONE
EdgeZone
"EdgeZone"
EdgeZone

Identity
, IdentityArgs

Type Pulumi.AzureNative.Resources.ResourceIdentityType
The identity type.
UserAssignedIdentities List<string>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Type ResourceIdentityType
The identity type.
UserAssignedIdentities []string
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type ResourceIdentityType
The identity type.
userAssignedIdentities List<String>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type ResourceIdentityType
The identity type.
userAssignedIdentities string[]
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type ResourceIdentityType
The identity type.
user_assigned_identities Sequence[str]
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
type "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None"
The identity type.
userAssignedIdentities List<String>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

IdentityResponse
, IdentityResponseArgs

PrincipalId This property is required. string
The principal ID of resource identity.
TenantId This property is required. string
The tenant ID of resource.
Type string
The identity type.
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Resources.Inputs.IdentityResponseUserAssignedIdentities>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
PrincipalId This property is required. string
The principal ID of resource identity.
TenantId This property is required. string
The tenant ID of resource.
Type string
The identity type.
UserAssignedIdentities map[string]IdentityResponseUserAssignedIdentities
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId This property is required. String
The principal ID of resource identity.
tenantId This property is required. String
The tenant ID of resource.
type String
The identity type.
userAssignedIdentities Map<String,IdentityResponseUserAssignedIdentities>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId This property is required. string
The principal ID of resource identity.
tenantId This property is required. string
The tenant ID of resource.
type string
The identity type.
userAssignedIdentities {[key: string]: IdentityResponseUserAssignedIdentities}
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principal_id This property is required. str
The principal ID of resource identity.
tenant_id This property is required. str
The tenant ID of resource.
type str
The identity type.
user_assigned_identities Mapping[str, IdentityResponseUserAssignedIdentities]
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
principalId This property is required. String
The principal ID of resource identity.
tenantId This property is required. String
The tenant ID of resource.
type String
The identity type.
userAssignedIdentities Map<Property Map>
The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

IdentityResponseUserAssignedIdentities
, IdentityResponseUserAssignedIdentitiesArgs

ClientId This property is required. string
The client id of user assigned identity.
PrincipalId This property is required. string
The principal id of user assigned identity.
ClientId This property is required. string
The client id of user assigned identity.
PrincipalId This property is required. string
The principal id of user assigned identity.
clientId This property is required. String
The client id of user assigned identity.
principalId This property is required. String
The principal id of user assigned identity.
clientId This property is required. string
The client id of user assigned identity.
principalId This property is required. string
The principal id of user assigned identity.
client_id This property is required. str
The client id of user assigned identity.
principal_id This property is required. str
The principal id of user assigned identity.
clientId This property is required. String
The client id of user assigned identity.
principalId This property is required. String
The principal id of user assigned identity.

Plan
, PlanArgs

Name string
The plan ID.
Product string
The offer ID.
PromotionCode string
The promotion code.
Publisher string
The publisher ID.
Version string
The plan's version.
Name string
The plan ID.
Product string
The offer ID.
PromotionCode string
The promotion code.
Publisher string
The publisher ID.
Version string
The plan's version.
name String
The plan ID.
product String
The offer ID.
promotionCode String
The promotion code.
publisher String
The publisher ID.
version String
The plan's version.
name string
The plan ID.
product string
The offer ID.
promotionCode string
The promotion code.
publisher string
The publisher ID.
version string
The plan's version.
name str
The plan ID.
product str
The offer ID.
promotion_code str
The promotion code.
publisher str
The publisher ID.
version str
The plan's version.
name String
The plan ID.
product String
The offer ID.
promotionCode String
The promotion code.
publisher String
The publisher ID.
version String
The plan's version.

PlanResponse
, PlanResponseArgs

Name string
The plan ID.
Product string
The offer ID.
PromotionCode string
The promotion code.
Publisher string
The publisher ID.
Version string
The plan's version.
Name string
The plan ID.
Product string
The offer ID.
PromotionCode string
The promotion code.
Publisher string
The publisher ID.
Version string
The plan's version.
name String
The plan ID.
product String
The offer ID.
promotionCode String
The promotion code.
publisher String
The publisher ID.
version String
The plan's version.
name string
The plan ID.
product string
The offer ID.
promotionCode string
The promotion code.
publisher string
The publisher ID.
version string
The plan's version.
name str
The plan ID.
product str
The offer ID.
promotion_code str
The promotion code.
publisher str
The publisher ID.
version str
The plan's version.
name String
The plan ID.
product String
The offer ID.
promotionCode String
The promotion code.
publisher String
The publisher ID.
version String
The plan's version.

ResourceIdentityType
, ResourceIdentityTypeArgs

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
ResourceIdentityTypeSystemAssigned
SystemAssigned
ResourceIdentityTypeUserAssigned
UserAssigned
ResourceIdentityType_SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
ResourceIdentityTypeNone
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned, UserAssigned
None
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned, UserAssigned
NONE
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned, UserAssigned"
SystemAssigned, UserAssigned
"None"
None

Sku
, SkuArgs

Capacity int
The SKU capacity.
Family string
The SKU family.
Model string
The SKU model.
Name string
The SKU name.
Size string
The SKU size.
Tier string
The SKU tier.
Capacity int
The SKU capacity.
Family string
The SKU family.
Model string
The SKU model.
Name string
The SKU name.
Size string
The SKU size.
Tier string
The SKU tier.
capacity Integer
The SKU capacity.
family String
The SKU family.
model String
The SKU model.
name String
The SKU name.
size String
The SKU size.
tier String
The SKU tier.
capacity number
The SKU capacity.
family string
The SKU family.
model string
The SKU model.
name string
The SKU name.
size string
The SKU size.
tier string
The SKU tier.
capacity int
The SKU capacity.
family str
The SKU family.
model str
The SKU model.
name str
The SKU name.
size str
The SKU size.
tier str
The SKU tier.
capacity Number
The SKU capacity.
family String
The SKU family.
model String
The SKU model.
name String
The SKU name.
size String
The SKU size.
tier String
The SKU tier.

SkuResponse
, SkuResponseArgs

Capacity int
The SKU capacity.
Family string
The SKU family.
Model string
The SKU model.
Name string
The SKU name.
Size string
The SKU size.
Tier string
The SKU tier.
Capacity int
The SKU capacity.
Family string
The SKU family.
Model string
The SKU model.
Name string
The SKU name.
Size string
The SKU size.
Tier string
The SKU tier.
capacity Integer
The SKU capacity.
family String
The SKU family.
model String
The SKU model.
name String
The SKU name.
size String
The SKU size.
tier String
The SKU tier.
capacity number
The SKU capacity.
family string
The SKU family.
model string
The SKU model.
name string
The SKU name.
size string
The SKU size.
tier string
The SKU tier.
capacity int
The SKU capacity.
family str
The SKU family.
model str
The SKU model.
name str
The SKU name.
size str
The SKU size.
tier str
The SKU tier.
capacity Number
The SKU capacity.
family String
The SKU family.
model String
The SKU model.
name String
The SKU name.
size String
The SKU size.
tier String
The SKU tier.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi