1. Packages
  2. Azure Native
  3. API Docs
  4. providerhub
  5. SkusNestedResourceTypeThird
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.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.providerhub.SkusNestedResourceTypeThird

Explore with Pulumi AI

azure-native logo
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.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

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

    Other available API versions: 2021-09-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native providerhub [ApiVersion]. See the version guide for details.

    Example Usage

    Skus_CreateOrUpdateNestedResourceTypeThird

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var skusNestedResourceTypeThird = new AzureNative.ProviderHub.SkusNestedResourceTypeThird("skusNestedResourceTypeThird", new()
        {
            NestedResourceTypeFirst = "nestedResourceTypeFirst",
            NestedResourceTypeSecond = "nestedResourceTypeSecond",
            NestedResourceTypeThird = "nestedResourceTypeThird",
            Properties = new AzureNative.ProviderHub.Inputs.SkuResourcePropertiesArgs
            {
                SkuSettings = new[]
                {
                    new AzureNative.ProviderHub.Inputs.SkuSettingArgs
                    {
                        Kind = "Standard",
                        Name = "freeSku",
                        Tier = "Tier1",
                    },
                    new AzureNative.ProviderHub.Inputs.SkuSettingArgs
                    {
                        Costs = new[]
                        {
                            new AzureNative.ProviderHub.Inputs.SkuCostArgs
                            {
                                MeterId = "xxx",
                            },
                        },
                        Kind = "Premium",
                        Name = "premiumSku",
                        Tier = "Tier2",
                    },
                },
            },
            ProviderNamespace = "Microsoft.Contoso",
            ResourceType = "testResourceType",
            Sku = "testSku",
        });
    
    });
    
    package main
    
    import (
    	providerhub "github.com/pulumi/pulumi-azure-native-sdk/providerhub/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := providerhub.NewSkusNestedResourceTypeThird(ctx, "skusNestedResourceTypeThird", &providerhub.SkusNestedResourceTypeThirdArgs{
    			NestedResourceTypeFirst:  pulumi.String("nestedResourceTypeFirst"),
    			NestedResourceTypeSecond: pulumi.String("nestedResourceTypeSecond"),
    			NestedResourceTypeThird:  pulumi.String("nestedResourceTypeThird"),
    			Properties: &providerhub.SkuResourcePropertiesArgs{
    				SkuSettings: providerhub.SkuSettingArray{
    					&providerhub.SkuSettingArgs{
    						Kind: pulumi.String("Standard"),
    						Name: pulumi.String("freeSku"),
    						Tier: pulumi.String("Tier1"),
    					},
    					&providerhub.SkuSettingArgs{
    						Costs: providerhub.SkuCostArray{
    							&providerhub.SkuCostArgs{
    								MeterId: pulumi.String("xxx"),
    							},
    						},
    						Kind: pulumi.String("Premium"),
    						Name: pulumi.String("premiumSku"),
    						Tier: pulumi.String("Tier2"),
    					},
    				},
    			},
    			ProviderNamespace: pulumi.String("Microsoft.Contoso"),
    			ResourceType:      pulumi.String("testResourceType"),
    			Sku:               pulumi.String("testSku"),
    		})
    		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.providerhub.SkusNestedResourceTypeThird;
    import com.pulumi.azurenative.providerhub.SkusNestedResourceTypeThirdArgs;
    import com.pulumi.azurenative.providerhub.inputs.SkuResourcePropertiesArgs;
    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 skusNestedResourceTypeThird = new SkusNestedResourceTypeThird("skusNestedResourceTypeThird", SkusNestedResourceTypeThirdArgs.builder()
                .nestedResourceTypeFirst("nestedResourceTypeFirst")
                .nestedResourceTypeSecond("nestedResourceTypeSecond")
                .nestedResourceTypeThird("nestedResourceTypeThird")
                .properties(SkuResourcePropertiesArgs.builder()
                    .skuSettings(                
                        SkuSettingArgs.builder()
                            .kind("Standard")
                            .name("freeSku")
                            .tier("Tier1")
                            .build(),
                        SkuSettingArgs.builder()
                            .costs(SkuCostArgs.builder()
                                .meterId("xxx")
                                .build())
                            .kind("Premium")
                            .name("premiumSku")
                            .tier("Tier2")
                            .build())
                    .build())
                .providerNamespace("Microsoft.Contoso")
                .resourceType("testResourceType")
                .sku("testSku")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const skusNestedResourceTypeThird = new azure_native.providerhub.SkusNestedResourceTypeThird("skusNestedResourceTypeThird", {
        nestedResourceTypeFirst: "nestedResourceTypeFirst",
        nestedResourceTypeSecond: "nestedResourceTypeSecond",
        nestedResourceTypeThird: "nestedResourceTypeThird",
        properties: {
            skuSettings: [
                {
                    kind: "Standard",
                    name: "freeSku",
                    tier: "Tier1",
                },
                {
                    costs: [{
                        meterId: "xxx",
                    }],
                    kind: "Premium",
                    name: "premiumSku",
                    tier: "Tier2",
                },
            ],
        },
        providerNamespace: "Microsoft.Contoso",
        resourceType: "testResourceType",
        sku: "testSku",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    skus_nested_resource_type_third = azure_native.providerhub.SkusNestedResourceTypeThird("skusNestedResourceTypeThird",
        nested_resource_type_first="nestedResourceTypeFirst",
        nested_resource_type_second="nestedResourceTypeSecond",
        nested_resource_type_third="nestedResourceTypeThird",
        properties={
            "sku_settings": [
                {
                    "kind": "Standard",
                    "name": "freeSku",
                    "tier": "Tier1",
                },
                {
                    "costs": [{
                        "meter_id": "xxx",
                    }],
                    "kind": "Premium",
                    "name": "premiumSku",
                    "tier": "Tier2",
                },
            ],
        },
        provider_namespace="Microsoft.Contoso",
        resource_type="testResourceType",
        sku="testSku")
    
    resources:
      skusNestedResourceTypeThird:
        type: azure-native:providerhub:SkusNestedResourceTypeThird
        properties:
          nestedResourceTypeFirst: nestedResourceTypeFirst
          nestedResourceTypeSecond: nestedResourceTypeSecond
          nestedResourceTypeThird: nestedResourceTypeThird
          properties:
            skuSettings:
              - kind: Standard
                name: freeSku
                tier: Tier1
              - costs:
                  - meterId: xxx
                kind: Premium
                name: premiumSku
                tier: Tier2
          providerNamespace: Microsoft.Contoso
          resourceType: testResourceType
          sku: testSku
    

    Create SkusNestedResourceTypeThird Resource

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

    Constructor syntax

    new SkusNestedResourceTypeThird(name: string, args: SkusNestedResourceTypeThirdArgs, opts?: CustomResourceOptions);
    @overload
    def SkusNestedResourceTypeThird(resource_name: str,
                                    args: SkusNestedResourceTypeThirdArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def SkusNestedResourceTypeThird(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    nested_resource_type_first: Optional[str] = None,
                                    nested_resource_type_second: Optional[str] = None,
                                    nested_resource_type_third: Optional[str] = None,
                                    provider_namespace: Optional[str] = None,
                                    resource_type: Optional[str] = None,
                                    properties: Optional[SkuResourcePropertiesArgs] = None,
                                    sku: Optional[str] = None)
    func NewSkusNestedResourceTypeThird(ctx *Context, name string, args SkusNestedResourceTypeThirdArgs, opts ...ResourceOption) (*SkusNestedResourceTypeThird, error)
    public SkusNestedResourceTypeThird(string name, SkusNestedResourceTypeThirdArgs args, CustomResourceOptions? opts = null)
    public SkusNestedResourceTypeThird(String name, SkusNestedResourceTypeThirdArgs args)
    public SkusNestedResourceTypeThird(String name, SkusNestedResourceTypeThirdArgs args, CustomResourceOptions options)
    
    type: azure-native:providerhub:SkusNestedResourceTypeThird
    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 SkusNestedResourceTypeThirdArgs
    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 SkusNestedResourceTypeThirdArgs
    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 SkusNestedResourceTypeThirdArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SkusNestedResourceTypeThirdArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SkusNestedResourceTypeThirdArgs
    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 skusNestedResourceTypeThirdResource = new AzureNative.ProviderHub.SkusNestedResourceTypeThird("skusNestedResourceTypeThirdResource", new()
    {
        NestedResourceTypeFirst = "string",
        NestedResourceTypeSecond = "string",
        NestedResourceTypeThird = "string",
        ProviderNamespace = "string",
        ResourceType = "string",
        Properties = new AzureNative.ProviderHub.Inputs.SkuResourcePropertiesArgs
        {
            SkuSettings = new[]
            {
                new AzureNative.ProviderHub.Inputs.SkuSettingArgs
                {
                    Name = "string",
                    Capabilities = new[]
                    {
                        new AzureNative.ProviderHub.Inputs.SkuCapabilityArgs
                        {
                            Name = "string",
                            Value = "string",
                        },
                    },
                    Capacity = new AzureNative.ProviderHub.Inputs.SkuSettingCapacityArgs
                    {
                        Minimum = 0,
                        Default = 0,
                        Maximum = 0,
                        ScaleType = "string",
                    },
                    Costs = new[]
                    {
                        new AzureNative.ProviderHub.Inputs.SkuCostArgs
                        {
                            MeterId = "string",
                            ExtendedUnit = "string",
                            Quantity = 0,
                        },
                    },
                    Family = "string",
                    Kind = "string",
                    LocationInfo = new[]
                    {
                        new AzureNative.ProviderHub.Inputs.SkuLocationInfoArgs
                        {
                            Location = "string",
                            ExtendedLocations = new[]
                            {
                                "string",
                            },
                            Type = "string",
                            ZoneDetails = new[]
                            {
                                new AzureNative.ProviderHub.Inputs.SkuZoneDetailArgs
                                {
                                    Capabilities = new[]
                                    {
                                        new AzureNative.ProviderHub.Inputs.SkuCapabilityArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Name = new[]
                                    {
                                        "string",
                                    },
                                },
                            },
                            Zones = new[]
                            {
                                "string",
                            },
                        },
                    },
                    Locations = new[]
                    {
                        "string",
                    },
                    RequiredFeatures = new[]
                    {
                        "string",
                    },
                    RequiredQuotaIds = new[]
                    {
                        "string",
                    },
                    Size = "string",
                    Tier = "string",
                },
            },
        },
        Sku = "string",
    });
    
    example, err := providerhub.NewSkusNestedResourceTypeThird(ctx, "skusNestedResourceTypeThirdResource", &providerhub.SkusNestedResourceTypeThirdArgs{
    	NestedResourceTypeFirst:  pulumi.String("string"),
    	NestedResourceTypeSecond: pulumi.String("string"),
    	NestedResourceTypeThird:  pulumi.String("string"),
    	ProviderNamespace:        pulumi.String("string"),
    	ResourceType:             pulumi.String("string"),
    	Properties: &providerhub.SkuResourcePropertiesArgs{
    		SkuSettings: providerhub.SkuSettingArray{
    			&providerhub.SkuSettingArgs{
    				Name: pulumi.String("string"),
    				Capabilities: providerhub.SkuCapabilityArray{
    					&providerhub.SkuCapabilityArgs{
    						Name:  pulumi.String("string"),
    						Value: pulumi.String("string"),
    					},
    				},
    				Capacity: &providerhub.SkuSettingCapacityArgs{
    					Minimum:   pulumi.Int(0),
    					Default:   pulumi.Int(0),
    					Maximum:   pulumi.Int(0),
    					ScaleType: pulumi.String("string"),
    				},
    				Costs: providerhub.SkuCostArray{
    					&providerhub.SkuCostArgs{
    						MeterId:      pulumi.String("string"),
    						ExtendedUnit: pulumi.String("string"),
    						Quantity:     pulumi.Int(0),
    					},
    				},
    				Family: pulumi.String("string"),
    				Kind:   pulumi.String("string"),
    				LocationInfo: providerhub.SkuLocationInfoArray{
    					&providerhub.SkuLocationInfoArgs{
    						Location: pulumi.String("string"),
    						ExtendedLocations: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						Type: pulumi.String("string"),
    						ZoneDetails: providerhub.SkuZoneDetailArray{
    							&providerhub.SkuZoneDetailArgs{
    								Capabilities: providerhub.SkuCapabilityArray{
    									&providerhub.SkuCapabilityArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Name: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    							},
    						},
    						Zones: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    				},
    				Locations: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				RequiredFeatures: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				RequiredQuotaIds: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Size: pulumi.String("string"),
    				Tier: pulumi.String("string"),
    			},
    		},
    	},
    	Sku: pulumi.String("string"),
    })
    
    var skusNestedResourceTypeThirdResource = new SkusNestedResourceTypeThird("skusNestedResourceTypeThirdResource", SkusNestedResourceTypeThirdArgs.builder()
        .nestedResourceTypeFirst("string")
        .nestedResourceTypeSecond("string")
        .nestedResourceTypeThird("string")
        .providerNamespace("string")
        .resourceType("string")
        .properties(SkuResourcePropertiesArgs.builder()
            .skuSettings(SkuSettingArgs.builder()
                .name("string")
                .capabilities(SkuCapabilityArgs.builder()
                    .name("string")
                    .value("string")
                    .build())
                .capacity(SkuSettingCapacityArgs.builder()
                    .minimum(0)
                    .default_(0)
                    .maximum(0)
                    .scaleType("string")
                    .build())
                .costs(SkuCostArgs.builder()
                    .meterId("string")
                    .extendedUnit("string")
                    .quantity(0)
                    .build())
                .family("string")
                .kind("string")
                .locationInfo(SkuLocationInfoArgs.builder()
                    .location("string")
                    .extendedLocations("string")
                    .type("string")
                    .zoneDetails(SkuZoneDetailArgs.builder()
                        .capabilities(SkuCapabilityArgs.builder()
                            .name("string")
                            .value("string")
                            .build())
                        .name("string")
                        .build())
                    .zones("string")
                    .build())
                .locations("string")
                .requiredFeatures("string")
                .requiredQuotaIds("string")
                .size("string")
                .tier("string")
                .build())
            .build())
        .sku("string")
        .build());
    
    skus_nested_resource_type_third_resource = azure_native.providerhub.SkusNestedResourceTypeThird("skusNestedResourceTypeThirdResource",
        nested_resource_type_first="string",
        nested_resource_type_second="string",
        nested_resource_type_third="string",
        provider_namespace="string",
        resource_type="string",
        properties={
            "sku_settings": [{
                "name": "string",
                "capabilities": [{
                    "name": "string",
                    "value": "string",
                }],
                "capacity": {
                    "minimum": 0,
                    "default": 0,
                    "maximum": 0,
                    "scale_type": "string",
                },
                "costs": [{
                    "meter_id": "string",
                    "extended_unit": "string",
                    "quantity": 0,
                }],
                "family": "string",
                "kind": "string",
                "location_info": [{
                    "location": "string",
                    "extended_locations": ["string"],
                    "type": "string",
                    "zone_details": [{
                        "capabilities": [{
                            "name": "string",
                            "value": "string",
                        }],
                        "name": ["string"],
                    }],
                    "zones": ["string"],
                }],
                "locations": ["string"],
                "required_features": ["string"],
                "required_quota_ids": ["string"],
                "size": "string",
                "tier": "string",
            }],
        },
        sku="string")
    
    const skusNestedResourceTypeThirdResource = new azure_native.providerhub.SkusNestedResourceTypeThird("skusNestedResourceTypeThirdResource", {
        nestedResourceTypeFirst: "string",
        nestedResourceTypeSecond: "string",
        nestedResourceTypeThird: "string",
        providerNamespace: "string",
        resourceType: "string",
        properties: {
            skuSettings: [{
                name: "string",
                capabilities: [{
                    name: "string",
                    value: "string",
                }],
                capacity: {
                    minimum: 0,
                    "default": 0,
                    maximum: 0,
                    scaleType: "string",
                },
                costs: [{
                    meterId: "string",
                    extendedUnit: "string",
                    quantity: 0,
                }],
                family: "string",
                kind: "string",
                locationInfo: [{
                    location: "string",
                    extendedLocations: ["string"],
                    type: "string",
                    zoneDetails: [{
                        capabilities: [{
                            name: "string",
                            value: "string",
                        }],
                        name: ["string"],
                    }],
                    zones: ["string"],
                }],
                locations: ["string"],
                requiredFeatures: ["string"],
                requiredQuotaIds: ["string"],
                size: "string",
                tier: "string",
            }],
        },
        sku: "string",
    });
    
    type: azure-native:providerhub:SkusNestedResourceTypeThird
    properties:
        nestedResourceTypeFirst: string
        nestedResourceTypeSecond: string
        nestedResourceTypeThird: string
        properties:
            skuSettings:
                - capabilities:
                    - name: string
                      value: string
                  capacity:
                    default: 0
                    maximum: 0
                    minimum: 0
                    scaleType: string
                  costs:
                    - extendedUnit: string
                      meterId: string
                      quantity: 0
                  family: string
                  kind: string
                  locationInfo:
                    - extendedLocations:
                        - string
                      location: string
                      type: string
                      zoneDetails:
                        - capabilities:
                            - name: string
                              value: string
                          name:
                            - string
                      zones:
                        - string
                  locations:
                    - string
                  name: string
                  requiredFeatures:
                    - string
                  requiredQuotaIds:
                    - string
                  size: string
                  tier: string
        providerNamespace: string
        resourceType: string
        sku: string
    

    SkusNestedResourceTypeThird 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 SkusNestedResourceTypeThird resource accepts the following input properties:

    NestedResourceTypeFirst string
    The first child resource type.
    NestedResourceTypeSecond string
    The second child resource type.
    NestedResourceTypeThird string
    The third child resource type.
    ProviderNamespace string
    The name of the resource provider hosted within ProviderHub.
    ResourceType string
    The resource type.
    Properties Pulumi.AzureNative.ProviderHub.Inputs.SkuResourceProperties
    Sku string
    The SKU.
    NestedResourceTypeFirst string
    The first child resource type.
    NestedResourceTypeSecond string
    The second child resource type.
    NestedResourceTypeThird string
    The third child resource type.
    ProviderNamespace string
    The name of the resource provider hosted within ProviderHub.
    ResourceType string
    The resource type.
    Properties SkuResourcePropertiesArgs
    Sku string
    The SKU.
    nestedResourceTypeFirst String
    The first child resource type.
    nestedResourceTypeSecond String
    The second child resource type.
    nestedResourceTypeThird String
    The third child resource type.
    providerNamespace String
    The name of the resource provider hosted within ProviderHub.
    resourceType String
    The resource type.
    properties SkuResourceProperties
    sku String
    The SKU.
    nestedResourceTypeFirst string
    The first child resource type.
    nestedResourceTypeSecond string
    The second child resource type.
    nestedResourceTypeThird string
    The third child resource type.
    providerNamespace string
    The name of the resource provider hosted within ProviderHub.
    resourceType string
    The resource type.
    properties SkuResourceProperties
    sku string
    The SKU.
    nested_resource_type_first str
    The first child resource type.
    nested_resource_type_second str
    The second child resource type.
    nested_resource_type_third str
    The third child resource type.
    provider_namespace str
    The name of the resource provider hosted within ProviderHub.
    resource_type str
    The resource type.
    properties SkuResourcePropertiesArgs
    sku str
    The SKU.
    nestedResourceTypeFirst String
    The first child resource type.
    nestedResourceTypeSecond String
    The second child resource type.
    nestedResourceTypeThird String
    The third child resource type.
    providerNamespace String
    The name of the resource provider hosted within ProviderHub.
    resourceType String
    The resource type.
    properties Property Map
    sku String
    The SKU.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SkusNestedResourceTypeThird 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
    The name of the resource
    SystemData Pulumi.AzureNative.ProviderHub.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocationType, ExtendedLocationTypeArgs

    NotSpecified
    NotSpecifiedThe extended location type is not specified.
    CustomLocation
    CustomLocationThe extended location type is custom location.
    EdgeZone
    EdgeZoneThe extended location type is edge zone.
    ArcZone
    ArcZoneThe extended location type is arc zone.
    ExtendedLocationTypeNotSpecified
    NotSpecifiedThe extended location type is not specified.
    ExtendedLocationTypeCustomLocation
    CustomLocationThe extended location type is custom location.
    ExtendedLocationTypeEdgeZone
    EdgeZoneThe extended location type is edge zone.
    ExtendedLocationTypeArcZone
    ArcZoneThe extended location type is arc zone.
    NotSpecified
    NotSpecifiedThe extended location type is not specified.
    CustomLocation
    CustomLocationThe extended location type is custom location.
    EdgeZone
    EdgeZoneThe extended location type is edge zone.
    ArcZone
    ArcZoneThe extended location type is arc zone.
    NotSpecified
    NotSpecifiedThe extended location type is not specified.
    CustomLocation
    CustomLocationThe extended location type is custom location.
    EdgeZone
    EdgeZoneThe extended location type is edge zone.
    ArcZone
    ArcZoneThe extended location type is arc zone.
    NOT_SPECIFIED
    NotSpecifiedThe extended location type is not specified.
    CUSTOM_LOCATION
    CustomLocationThe extended location type is custom location.
    EDGE_ZONE
    EdgeZoneThe extended location type is edge zone.
    ARC_ZONE
    ArcZoneThe extended location type is arc zone.
    "NotSpecified"
    NotSpecifiedThe extended location type is not specified.
    "CustomLocation"
    CustomLocationThe extended location type is custom location.
    "EdgeZone"
    EdgeZoneThe extended location type is edge zone.
    "ArcZone"
    ArcZoneThe extended location type is arc zone.

    SkuCapability, SkuCapabilityArgs

    Name string
    The name.
    Value string
    The value.
    Name string
    The name.
    Value string
    The value.
    name String
    The name.
    value String
    The value.
    name string
    The name.
    value string
    The value.
    name str
    The name.
    value str
    The value.
    name String
    The name.
    value String
    The value.

    SkuCapabilityResponse, SkuCapabilityResponseArgs

    Name string
    The name.
    Value string
    The value.
    Name string
    The name.
    Value string
    The value.
    name String
    The name.
    value String
    The value.
    name string
    The name.
    value string
    The value.
    name str
    The name.
    value str
    The value.
    name String
    The name.
    value String
    The value.

    SkuCost, SkuCostArgs

    MeterId string
    The meter id.
    ExtendedUnit string
    The extended unit.
    Quantity int
    The quantity.
    MeterId string
    The meter id.
    ExtendedUnit string
    The extended unit.
    Quantity int
    The quantity.
    meterId String
    The meter id.
    extendedUnit String
    The extended unit.
    quantity Integer
    The quantity.
    meterId string
    The meter id.
    extendedUnit string
    The extended unit.
    quantity number
    The quantity.
    meter_id str
    The meter id.
    extended_unit str
    The extended unit.
    quantity int
    The quantity.
    meterId String
    The meter id.
    extendedUnit String
    The extended unit.
    quantity Number
    The quantity.

    SkuCostResponse, SkuCostResponseArgs

    MeterId string
    The meter id.
    ExtendedUnit string
    The extended unit.
    Quantity int
    The quantity.
    MeterId string
    The meter id.
    ExtendedUnit string
    The extended unit.
    Quantity int
    The quantity.
    meterId String
    The meter id.
    extendedUnit String
    The extended unit.
    quantity Integer
    The quantity.
    meterId string
    The meter id.
    extendedUnit string
    The extended unit.
    quantity number
    The quantity.
    meter_id str
    The meter id.
    extended_unit str
    The extended unit.
    quantity int
    The quantity.
    meterId String
    The meter id.
    extendedUnit String
    The extended unit.
    quantity Number
    The quantity.

    SkuLocationInfo, SkuLocationInfoArgs

    Location string
    The location.
    ExtendedLocations List<string>
    The extended locations.
    Type string | Pulumi.AzureNative.ProviderHub.ExtendedLocationType
    The type.
    ZoneDetails List<Pulumi.AzureNative.ProviderHub.Inputs.SkuZoneDetail>
    The zone details.
    Zones List<string>
    The zones.
    Location string
    The location.
    ExtendedLocations []string
    The extended locations.
    Type string | ExtendedLocationType
    The type.
    ZoneDetails []SkuZoneDetail
    The zone details.
    Zones []string
    The zones.
    location String
    The location.
    extendedLocations List<String>
    The extended locations.
    type String | ExtendedLocationType
    The type.
    zoneDetails List<SkuZoneDetail>
    The zone details.
    zones List<String>
    The zones.
    location string
    The location.
    extendedLocations string[]
    The extended locations.
    type string | ExtendedLocationType
    The type.
    zoneDetails SkuZoneDetail[]
    The zone details.
    zones string[]
    The zones.
    location str
    The location.
    extended_locations Sequence[str]
    The extended locations.
    type str | ExtendedLocationType
    The type.
    zone_details Sequence[SkuZoneDetail]
    The zone details.
    zones Sequence[str]
    The zones.
    location String
    The location.
    extendedLocations List<String>
    The extended locations.
    type String | "NotSpecified" | "CustomLocation" | "EdgeZone" | "ArcZone"
    The type.
    zoneDetails List<Property Map>
    The zone details.
    zones List<String>
    The zones.

    SkuLocationInfoResponse, SkuLocationInfoResponseArgs

    Location string
    The location.
    ExtendedLocations List<string>
    The extended locations.
    Type string
    The type.
    ZoneDetails List<Pulumi.AzureNative.ProviderHub.Inputs.SkuZoneDetailResponse>
    The zone details.
    Zones List<string>
    The zones.
    Location string
    The location.
    ExtendedLocations []string
    The extended locations.
    Type string
    The type.
    ZoneDetails []SkuZoneDetailResponse
    The zone details.
    Zones []string
    The zones.
    location String
    The location.
    extendedLocations List<String>
    The extended locations.
    type String
    The type.
    zoneDetails List<SkuZoneDetailResponse>
    The zone details.
    zones List<String>
    The zones.
    location string
    The location.
    extendedLocations string[]
    The extended locations.
    type string
    The type.
    zoneDetails SkuZoneDetailResponse[]
    The zone details.
    zones string[]
    The zones.
    location str
    The location.
    extended_locations Sequence[str]
    The extended locations.
    type str
    The type.
    zone_details Sequence[SkuZoneDetailResponse]
    The zone details.
    zones Sequence[str]
    The zones.
    location String
    The location.
    extendedLocations List<String>
    The extended locations.
    type String
    The type.
    zoneDetails List<Property Map>
    The zone details.
    zones List<String>
    The zones.

    SkuResourceProperties, SkuResourcePropertiesArgs

    SkuSettings []SkuSetting
    The sku settings.
    skuSettings List<SkuSetting>
    The sku settings.
    skuSettings SkuSetting[]
    The sku settings.

    SkuResourceResponseProperties, SkuResourceResponsePropertiesArgs

    ProvisioningState string
    The provisioning state.
    SkuSettings []SkuSettingResponse
    The sku settings.
    provisioningState String
    The provisioning state.
    skuSettings List<SkuSettingResponse>
    The sku settings.
    provisioningState string
    The provisioning state.
    skuSettings SkuSettingResponse[]
    The sku settings.
    provisioning_state str
    The provisioning state.
    sku_settings Sequence[SkuSettingResponse]
    The sku settings.
    provisioningState String
    The provisioning state.
    skuSettings List<Property Map>
    The sku settings.

    SkuScaleType, SkuScaleTypeArgs

    None
    None
    Manual
    Manual
    Automatic
    Automatic
    SkuScaleTypeNone
    None
    SkuScaleTypeManual
    Manual
    SkuScaleTypeAutomatic
    Automatic
    None
    None
    Manual
    Manual
    Automatic
    Automatic
    None
    None
    Manual
    Manual
    Automatic
    Automatic
    NONE
    None
    MANUAL
    Manual
    AUTOMATIC
    Automatic
    "None"
    None
    "Manual"
    Manual
    "Automatic"
    Automatic

    SkuSetting, SkuSettingArgs

    Name string
    The name.
    Capabilities List<Pulumi.AzureNative.ProviderHub.Inputs.SkuCapability>
    The capabilities.
    Capacity Pulumi.AzureNative.ProviderHub.Inputs.SkuSettingCapacity
    The capacity.
    Costs List<Pulumi.AzureNative.ProviderHub.Inputs.SkuCost>
    The costs.
    Family string
    The family.
    Kind string
    The kind.
    LocationInfo List<Pulumi.AzureNative.ProviderHub.Inputs.SkuLocationInfo>
    The location info.
    Locations List<string>
    The locations.
    RequiredFeatures List<string>
    The required features.
    RequiredQuotaIds List<string>
    The required quota ids.
    Size string
    The size.
    Tier string
    The tier.
    Name string
    The name.
    Capabilities []SkuCapability
    The capabilities.
    Capacity SkuSettingCapacity
    The capacity.
    Costs []SkuCost
    The costs.
    Family string
    The family.
    Kind string
    The kind.
    LocationInfo []SkuLocationInfo
    The location info.
    Locations []string
    The locations.
    RequiredFeatures []string
    The required features.
    RequiredQuotaIds []string
    The required quota ids.
    Size string
    The size.
    Tier string
    The tier.
    name String
    The name.
    capabilities List<SkuCapability>
    The capabilities.
    capacity SkuSettingCapacity
    The capacity.
    costs List<SkuCost>
    The costs.
    family String
    The family.
    kind String
    The kind.
    locationInfo List<SkuLocationInfo>
    The location info.
    locations List<String>
    The locations.
    requiredFeatures List<String>
    The required features.
    requiredQuotaIds List<String>
    The required quota ids.
    size String
    The size.
    tier String
    The tier.
    name string
    The name.
    capabilities SkuCapability[]
    The capabilities.
    capacity SkuSettingCapacity
    The capacity.
    costs SkuCost[]
    The costs.
    family string
    The family.
    kind string
    The kind.
    locationInfo SkuLocationInfo[]
    The location info.
    locations string[]
    The locations.
    requiredFeatures string[]
    The required features.
    requiredQuotaIds string[]
    The required quota ids.
    size string
    The size.
    tier string
    The tier.
    name str
    The name.
    capabilities Sequence[SkuCapability]
    The capabilities.
    capacity SkuSettingCapacity
    The capacity.
    costs Sequence[SkuCost]
    The costs.
    family str
    The family.
    kind str
    The kind.
    location_info Sequence[SkuLocationInfo]
    The location info.
    locations Sequence[str]
    The locations.
    required_features Sequence[str]
    The required features.
    required_quota_ids Sequence[str]
    The required quota ids.
    size str
    The size.
    tier str
    The tier.
    name String
    The name.
    capabilities List<Property Map>
    The capabilities.
    capacity Property Map
    The capacity.
    costs List<Property Map>
    The costs.
    family String
    The family.
    kind String
    The kind.
    locationInfo List<Property Map>
    The location info.
    locations List<String>
    The locations.
    requiredFeatures List<String>
    The required features.
    requiredQuotaIds List<String>
    The required quota ids.
    size String
    The size.
    tier String
    The tier.

    SkuSettingCapacity, SkuSettingCapacityArgs

    Minimum int
    The minimum.
    Default int
    The default.
    Maximum int
    The maximum.
    ScaleType string | Pulumi.AzureNative.ProviderHub.SkuScaleType
    The scale type.
    Minimum int
    The minimum.
    Default int
    The default.
    Maximum int
    The maximum.
    ScaleType string | SkuScaleType
    The scale type.
    minimum Integer
    The minimum.
    default_ Integer
    The default.
    maximum Integer
    The maximum.
    scaleType String | SkuScaleType
    The scale type.
    minimum number
    The minimum.
    default number
    The default.
    maximum number
    The maximum.
    scaleType string | SkuScaleType
    The scale type.
    minimum int
    The minimum.
    default int
    The default.
    maximum int
    The maximum.
    scale_type str | SkuScaleType
    The scale type.
    minimum Number
    The minimum.
    default Number
    The default.
    maximum Number
    The maximum.
    scaleType String | "None" | "Manual" | "Automatic"
    The scale type.

    SkuSettingResponse, SkuSettingResponseArgs

    Name string
    The name.
    Capabilities List<Pulumi.AzureNative.ProviderHub.Inputs.SkuCapabilityResponse>
    The capabilities.
    Capacity Pulumi.AzureNative.ProviderHub.Inputs.SkuSettingResponseCapacity
    The capacity.
    Costs List<Pulumi.AzureNative.ProviderHub.Inputs.SkuCostResponse>
    The costs.
    Family string
    The family.
    Kind string
    The kind.
    LocationInfo List<Pulumi.AzureNative.ProviderHub.Inputs.SkuLocationInfoResponse>
    The location info.
    Locations List<string>
    The locations.
    RequiredFeatures List<string>
    The required features.
    RequiredQuotaIds List<string>
    The required quota ids.
    Size string
    The size.
    Tier string
    The tier.
    Name string
    The name.
    Capabilities []SkuCapabilityResponse
    The capabilities.
    Capacity SkuSettingResponseCapacity
    The capacity.
    Costs []SkuCostResponse
    The costs.
    Family string
    The family.
    Kind string
    The kind.
    LocationInfo []SkuLocationInfoResponse
    The location info.
    Locations []string
    The locations.
    RequiredFeatures []string
    The required features.
    RequiredQuotaIds []string
    The required quota ids.
    Size string
    The size.
    Tier string
    The tier.
    name String
    The name.
    capabilities List<SkuCapabilityResponse>
    The capabilities.
    capacity SkuSettingResponseCapacity
    The capacity.
    costs List<SkuCostResponse>
    The costs.
    family String
    The family.
    kind String
    The kind.
    locationInfo List<SkuLocationInfoResponse>
    The location info.
    locations List<String>
    The locations.
    requiredFeatures List<String>
    The required features.
    requiredQuotaIds List<String>
    The required quota ids.
    size String
    The size.
    tier String
    The tier.
    name string
    The name.
    capabilities SkuCapabilityResponse[]
    The capabilities.
    capacity SkuSettingResponseCapacity
    The capacity.
    costs SkuCostResponse[]
    The costs.
    family string
    The family.
    kind string
    The kind.
    locationInfo SkuLocationInfoResponse[]
    The location info.
    locations string[]
    The locations.
    requiredFeatures string[]
    The required features.
    requiredQuotaIds string[]
    The required quota ids.
    size string
    The size.
    tier string
    The tier.
    name str
    The name.
    capabilities Sequence[SkuCapabilityResponse]
    The capabilities.
    capacity SkuSettingResponseCapacity
    The capacity.
    costs Sequence[SkuCostResponse]
    The costs.
    family str
    The family.
    kind str
    The kind.
    location_info Sequence[SkuLocationInfoResponse]
    The location info.
    locations Sequence[str]
    The locations.
    required_features Sequence[str]
    The required features.
    required_quota_ids Sequence[str]
    The required quota ids.
    size str
    The size.
    tier str
    The tier.
    name String
    The name.
    capabilities List<Property Map>
    The capabilities.
    capacity Property Map
    The capacity.
    costs List<Property Map>
    The costs.
    family String
    The family.
    kind String
    The kind.
    locationInfo List<Property Map>
    The location info.
    locations List<String>
    The locations.
    requiredFeatures List<String>
    The required features.
    requiredQuotaIds List<String>
    The required quota ids.
    size String
    The size.
    tier String
    The tier.

    SkuSettingResponseCapacity, SkuSettingResponseCapacityArgs

    Minimum int
    The minimum.
    Default int
    The default.
    Maximum int
    The maximum.
    ScaleType string
    The scale type.
    Minimum int
    The minimum.
    Default int
    The default.
    Maximum int
    The maximum.
    ScaleType string
    The scale type.
    minimum Integer
    The minimum.
    default_ Integer
    The default.
    maximum Integer
    The maximum.
    scaleType String
    The scale type.
    minimum number
    The minimum.
    default number
    The default.
    maximum number
    The maximum.
    scaleType string
    The scale type.
    minimum int
    The minimum.
    default int
    The default.
    maximum int
    The maximum.
    scale_type str
    The scale type.
    minimum Number
    The minimum.
    default Number
    The default.
    maximum Number
    The maximum.
    scaleType String
    The scale type.

    SkuZoneDetail, SkuZoneDetailArgs

    Capabilities []SkuCapability
    The capabilities.
    Name []string
    The name.
    capabilities List<SkuCapability>
    The capabilities.
    name List<String>
    The name.
    capabilities SkuCapability[]
    The capabilities.
    name string[]
    The name.
    capabilities Sequence[SkuCapability]
    The capabilities.
    name Sequence[str]
    The name.
    capabilities List<Property Map>
    The capabilities.
    name List<String>
    The name.

    SkuZoneDetailResponse, SkuZoneDetailResponseArgs

    Capabilities []SkuCapabilityResponse
    The capabilities.
    Name []string
    The name.
    capabilities List<SkuCapabilityResponse>
    The capabilities.
    name List<String>
    The name.
    capabilities SkuCapabilityResponse[]
    The capabilities.
    name string[]
    The name.
    capabilities Sequence[SkuCapabilityResponse]
    The capabilities.
    name Sequence[str]
    The name.
    capabilities List<Property Map>
    The capabilities.
    name List<String>
    The name.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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:providerhub:SkusNestedResourceTypeThird Microsoft.Contoso/employees/nestedEmployee/nestedEmployee2/nestedEmployee3/sku1 /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/resourcetypeRegistrations/{resourceType}/resourcetypeRegistrations/{nestedResourceTypeFirst}/resourcetypeRegistrations/{nestedResourceTypeSecond}/resourcetypeRegistrations/{nestedResourceTypeThird}/skus/{sku} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi