1. Packages
  2. Azure Native
  3. API Docs
  4. providerhub
  5. SkusNestedResourceTypeSecond
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.providerhub.SkusNestedResourceTypeSecond

Explore with Pulumi AI

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

Example Usage

Skus_CreateOrUpdateNestedResourceTypeSecond

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var skusNestedResourceTypeSecond = new AzureNative.ProviderHub.SkusNestedResourceTypeSecond("skusNestedResourceTypeSecond", new()
    {
        NestedResourceTypeFirst = "nestedResourceTypeFirst",
        NestedResourceTypeSecond = "nestedResourceTypeSecond",
        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",
    });

});
Copy
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.NewSkusNestedResourceTypeSecond(ctx, "skusNestedResourceTypeSecond", &providerhub.SkusNestedResourceTypeSecondArgs{
			NestedResourceTypeFirst:  pulumi.String("nestedResourceTypeFirst"),
			NestedResourceTypeSecond: pulumi.String("nestedResourceTypeSecond"),
			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
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.providerhub.SkusNestedResourceTypeSecond;
import com.pulumi.azurenative.providerhub.SkusNestedResourceTypeSecondArgs;
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 skusNestedResourceTypeSecond = new SkusNestedResourceTypeSecond("skusNestedResourceTypeSecond", SkusNestedResourceTypeSecondArgs.builder()
            .nestedResourceTypeFirst("nestedResourceTypeFirst")
            .nestedResourceTypeSecond("nestedResourceTypeSecond")
            .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());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const skusNestedResourceTypeSecond = new azure_native.providerhub.SkusNestedResourceTypeSecond("skusNestedResourceTypeSecond", {
    nestedResourceTypeFirst: "nestedResourceTypeFirst",
    nestedResourceTypeSecond: "nestedResourceTypeSecond",
    properties: {
        skuSettings: [
            {
                kind: "Standard",
                name: "freeSku",
                tier: "Tier1",
            },
            {
                costs: [{
                    meterId: "xxx",
                }],
                kind: "Premium",
                name: "premiumSku",
                tier: "Tier2",
            },
        ],
    },
    providerNamespace: "Microsoft.Contoso",
    resourceType: "testResourceType",
    sku: "testSku",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

skus_nested_resource_type_second = azure_native.providerhub.SkusNestedResourceTypeSecond("skusNestedResourceTypeSecond",
    nested_resource_type_first="nestedResourceTypeFirst",
    nested_resource_type_second="nestedResourceTypeSecond",
    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")
Copy
resources:
  skusNestedResourceTypeSecond:
    type: azure-native:providerhub:SkusNestedResourceTypeSecond
    properties:
      nestedResourceTypeFirst: nestedResourceTypeFirst
      nestedResourceTypeSecond: nestedResourceTypeSecond
      properties:
        skuSettings:
          - kind: Standard
            name: freeSku
            tier: Tier1
          - costs:
              - meterId: xxx
            kind: Premium
            name: premiumSku
            tier: Tier2
      providerNamespace: Microsoft.Contoso
      resourceType: testResourceType
      sku: testSku
Copy

Create SkusNestedResourceTypeSecond Resource

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

Constructor syntax

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

@overload
def SkusNestedResourceTypeSecond(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 nested_resource_type_first: Optional[str] = None,
                                 nested_resource_type_second: Optional[str] = None,
                                 provider_namespace: Optional[str] = None,
                                 resource_type: Optional[str] = None,
                                 properties: Optional[SkuResourcePropertiesArgs] = None,
                                 sku: Optional[str] = None)
func NewSkusNestedResourceTypeSecond(ctx *Context, name string, args SkusNestedResourceTypeSecondArgs, opts ...ResourceOption) (*SkusNestedResourceTypeSecond, error)
public SkusNestedResourceTypeSecond(string name, SkusNestedResourceTypeSecondArgs args, CustomResourceOptions? opts = null)
public SkusNestedResourceTypeSecond(String name, SkusNestedResourceTypeSecondArgs args)
public SkusNestedResourceTypeSecond(String name, SkusNestedResourceTypeSecondArgs args, CustomResourceOptions options)
type: azure-native:providerhub:SkusNestedResourceTypeSecond
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. SkusNestedResourceTypeSecondArgs
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. SkusNestedResourceTypeSecondArgs
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. SkusNestedResourceTypeSecondArgs
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. SkusNestedResourceTypeSecondArgs
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. SkusNestedResourceTypeSecondArgs
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 skusNestedResourceTypeSecondResource = new AzureNative.ProviderHub.SkusNestedResourceTypeSecond("skusNestedResourceTypeSecondResource", new()
{
    NestedResourceTypeFirst = "string",
    NestedResourceTypeSecond = "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",
            },
        },
        ProvisioningState = "string",
    },
    Sku = "string",
});
Copy
example, err := providerhub.NewSkusNestedResourceTypeSecond(ctx, "skusNestedResourceTypeSecondResource", &providerhub.SkusNestedResourceTypeSecondArgs{
	NestedResourceTypeFirst:  pulumi.String("string"),
	NestedResourceTypeSecond: 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"),
			},
		},
		ProvisioningState: pulumi.String("string"),
	},
	Sku: pulumi.String("string"),
})
Copy
var skusNestedResourceTypeSecondResource = new SkusNestedResourceTypeSecond("skusNestedResourceTypeSecondResource", SkusNestedResourceTypeSecondArgs.builder()
    .nestedResourceTypeFirst("string")
    .nestedResourceTypeSecond("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())
        .provisioningState("string")
        .build())
    .sku("string")
    .build());
Copy
skus_nested_resource_type_second_resource = azure_native.providerhub.SkusNestedResourceTypeSecond("skusNestedResourceTypeSecondResource",
    nested_resource_type_first="string",
    nested_resource_type_second="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",
        }],
        "provisioning_state": "string",
    },
    sku="string")
Copy
const skusNestedResourceTypeSecondResource = new azure_native.providerhub.SkusNestedResourceTypeSecond("skusNestedResourceTypeSecondResource", {
    nestedResourceTypeFirst: "string",
    nestedResourceTypeSecond: "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",
        }],
        provisioningState: "string",
    },
    sku: "string",
});
Copy
type: azure-native:providerhub:SkusNestedResourceTypeSecond
properties:
    nestedResourceTypeFirst: string
    nestedResourceTypeSecond: string
    properties:
        provisioningState: string
        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
Copy

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

NestedResourceTypeFirst
This property is required.
Changes to this property will trigger replacement.
string
The first child resource type.
NestedResourceTypeSecond
This property is required.
Changes to this property will trigger replacement.
string
The second child resource type.
ProviderNamespace
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource provider hosted within ProviderHub.
ResourceType
This property is required.
Changes to this property will trigger replacement.
string
The resource type.
Properties Pulumi.AzureNative.ProviderHub.Inputs.SkuResourceProperties
Sku Changes to this property will trigger replacement. string
The SKU.
NestedResourceTypeFirst
This property is required.
Changes to this property will trigger replacement.
string
The first child resource type.
NestedResourceTypeSecond
This property is required.
Changes to this property will trigger replacement.
string
The second child resource type.
ProviderNamespace
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource provider hosted within ProviderHub.
ResourceType
This property is required.
Changes to this property will trigger replacement.
string
The resource type.
Properties SkuResourcePropertiesArgs
Sku Changes to this property will trigger replacement. string
The SKU.
nestedResourceTypeFirst
This property is required.
Changes to this property will trigger replacement.
String
The first child resource type.
nestedResourceTypeSecond
This property is required.
Changes to this property will trigger replacement.
String
The second child resource type.
providerNamespace
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource provider hosted within ProviderHub.
resourceType
This property is required.
Changes to this property will trigger replacement.
String
The resource type.
properties SkuResourceProperties
sku Changes to this property will trigger replacement. String
The SKU.
nestedResourceTypeFirst
This property is required.
Changes to this property will trigger replacement.
string
The first child resource type.
nestedResourceTypeSecond
This property is required.
Changes to this property will trigger replacement.
string
The second child resource type.
providerNamespace
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource provider hosted within ProviderHub.
resourceType
This property is required.
Changes to this property will trigger replacement.
string
The resource type.
properties SkuResourceProperties
sku Changes to this property will trigger replacement. string
The SKU.
nested_resource_type_first
This property is required.
Changes to this property will trigger replacement.
str
The first child resource type.
nested_resource_type_second
This property is required.
Changes to this property will trigger replacement.
str
The second child resource type.
provider_namespace
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource provider hosted within ProviderHub.
resource_type
This property is required.
Changes to this property will trigger replacement.
str
The resource type.
properties SkuResourcePropertiesArgs
sku Changes to this property will trigger replacement. str
The SKU.
nestedResourceTypeFirst
This property is required.
Changes to this property will trigger replacement.
String
The first child resource type.
nestedResourceTypeSecond
This property is required.
Changes to this property will trigger replacement.
String
The second child resource type.
providerNamespace
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource provider hosted within ProviderHub.
resourceType
This property is required.
Changes to this property will trigger replacement.
String
The resource type.
properties Property Map
sku Changes to this property will trigger replacement. String
The SKU.

Outputs

All input properties are implicitly available as output properties. Additionally, the SkusNestedResourceTypeSecond 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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
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
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ProvisioningState
, ProvisioningStateArgs

NotSpecified
NotSpecified
Accepted
Accepted
Running
Running
Creating
Creating
Created
Created
Deleting
Deleting
Deleted
Deleted
Canceled
Canceled
Failed
Failed
Succeeded
Succeeded
MovingResources
MovingResources
TransientFailure
TransientFailure
RolloutInProgress
RolloutInProgress
ProvisioningStateNotSpecified
NotSpecified
ProvisioningStateAccepted
Accepted
ProvisioningStateRunning
Running
ProvisioningStateCreating
Creating
ProvisioningStateCreated
Created
ProvisioningStateDeleting
Deleting
ProvisioningStateDeleted
Deleted
ProvisioningStateCanceled
Canceled
ProvisioningStateFailed
Failed
ProvisioningStateSucceeded
Succeeded
ProvisioningStateMovingResources
MovingResources
ProvisioningStateTransientFailure
TransientFailure
ProvisioningStateRolloutInProgress
RolloutInProgress
NotSpecified
NotSpecified
Accepted
Accepted
Running
Running
Creating
Creating
Created
Created
Deleting
Deleting
Deleted
Deleted
Canceled
Canceled
Failed
Failed
Succeeded
Succeeded
MovingResources
MovingResources
TransientFailure
TransientFailure
RolloutInProgress
RolloutInProgress
NotSpecified
NotSpecified
Accepted
Accepted
Running
Running
Creating
Creating
Created
Created
Deleting
Deleting
Deleted
Deleted
Canceled
Canceled
Failed
Failed
Succeeded
Succeeded
MovingResources
MovingResources
TransientFailure
TransientFailure
RolloutInProgress
RolloutInProgress
NOT_SPECIFIED
NotSpecified
ACCEPTED
Accepted
RUNNING
Running
CREATING
Creating
CREATED
Created
DELETING
Deleting
DELETED
Deleted
CANCELED
Canceled
FAILED
Failed
SUCCEEDED
Succeeded
MOVING_RESOURCES
MovingResources
TRANSIENT_FAILURE
TransientFailure
ROLLOUT_IN_PROGRESS
RolloutInProgress
"NotSpecified"
NotSpecified
"Accepted"
Accepted
"Running"
Running
"Creating"
Creating
"Created"
Created
"Deleting"
Deleting
"Deleted"
Deleted
"Canceled"
Canceled
"Failed"
Failed
"Succeeded"
Succeeded
"MovingResources"
MovingResources
"TransientFailure"
TransientFailure
"RolloutInProgress"
RolloutInProgress

SkuCapability
, SkuCapabilityArgs

Name This property is required. string
Value This property is required. string
Name This property is required. string
Value This property is required. string
name This property is required. String
value This property is required. String
name This property is required. string
value This property is required. string
name This property is required. str
value This property is required. str
name This property is required. String
value This property is required. String

SkuCapabilityResponse
, SkuCapabilityResponseArgs

Name This property is required. string
Value This property is required. string
Name This property is required. string
Value This property is required. string
name This property is required. String
value This property is required. String
name This property is required. string
value This property is required. string
name This property is required. str
value This property is required. str
name This property is required. String
value This property is required. String

SkuCost
, SkuCostArgs

MeterId This property is required. string
ExtendedUnit string
Quantity int
MeterId This property is required. string
ExtendedUnit string
Quantity int
meterId This property is required. String
extendedUnit String
quantity Integer
meterId This property is required. string
extendedUnit string
quantity number
meter_id This property is required. str
extended_unit str
quantity int
meterId This property is required. String
extendedUnit String
quantity Number

SkuCostResponse
, SkuCostResponseArgs

MeterId This property is required. string
ExtendedUnit string
Quantity int
MeterId This property is required. string
ExtendedUnit string
Quantity int
meterId This property is required. String
extendedUnit String
quantity Integer
meterId This property is required. string
extendedUnit string
quantity number
meter_id This property is required. str
extended_unit str
quantity int
meterId This property is required. String
extendedUnit String
quantity Number

SkuLocationInfo
, SkuLocationInfoArgs

Location This property is required. string
ExtendedLocations List<string>
Type string
ZoneDetails List<Pulumi.AzureNative.ProviderHub.Inputs.SkuZoneDetail>
Zones List<string>
Location This property is required. string
ExtendedLocations []string
Type string
ZoneDetails []SkuZoneDetail
Zones []string
location This property is required. String
extendedLocations List<String>
type String
zoneDetails List<SkuZoneDetail>
zones List<String>
location This property is required. string
extendedLocations string[]
type string
zoneDetails SkuZoneDetail[]
zones string[]
location This property is required. str
extended_locations Sequence[str]
type str
zone_details Sequence[SkuZoneDetail]
zones Sequence[str]
location This property is required. String
extendedLocations List<String>
type String
zoneDetails List<Property Map>
zones List<String>

SkuLocationInfoResponse
, SkuLocationInfoResponseArgs

Location This property is required. string
ExtendedLocations []string
Type string
ZoneDetails []SkuZoneDetailResponse
Zones []string
location This property is required. String
extendedLocations List<String>
type String
zoneDetails List<SkuZoneDetailResponse>
zones List<String>
location This property is required. string
extendedLocations string[]
type string
zoneDetails SkuZoneDetailResponse[]
zones string[]
location This property is required. str
extended_locations Sequence[str]
type str
zone_details Sequence[SkuZoneDetailResponse]
zones Sequence[str]
location This property is required. String
extendedLocations List<String>
type String
zoneDetails List<Property Map>
zones List<String>

SkuResourceProperties
, SkuResourcePropertiesArgs

SkuSettings This property is required. []SkuSetting
ProvisioningState string | ProvisioningState
The provisioned state of the resource.
skuSettings This property is required. List<SkuSetting>
provisioningState String | ProvisioningState
The provisioned state of the resource.
skuSettings This property is required. SkuSetting[]
provisioningState string | ProvisioningState
The provisioned state of the resource.
sku_settings This property is required. Sequence[SkuSetting]
provisioning_state str | ProvisioningState
The provisioned state of the resource.

SkuResourceResponseProperties
, SkuResourceResponsePropertiesArgs

SkuSettings This property is required. List<Pulumi.AzureNative.ProviderHub.Inputs.SkuSettingResponse>
ProvisioningState string
The provisioned state of the resource.
SkuSettings This property is required. []SkuSettingResponse
ProvisioningState string
The provisioned state of the resource.
skuSettings This property is required. List<SkuSettingResponse>
provisioningState String
The provisioned state of the resource.
skuSettings This property is required. SkuSettingResponse[]
provisioningState string
The provisioned state of the resource.
sku_settings This property is required. Sequence[SkuSettingResponse]
provisioning_state str
The provisioned state of the resource.
skuSettings This property is required. List<Property Map>
provisioningState String
The provisioned state of the resource.

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

SkuSettingCapacity
, SkuSettingCapacityArgs

Minimum This property is required. int
Default int
Maximum int
ScaleType string | Pulumi.AzureNative.ProviderHub.SkuScaleType
Minimum This property is required. int
Default int
Maximum int
ScaleType string | SkuScaleType
minimum This property is required. Integer
default_ Integer
maximum Integer
scaleType String | SkuScaleType
minimum This property is required. number
default number
maximum number
scaleType string | SkuScaleType
minimum This property is required. int
default int
maximum int
scale_type str | SkuScaleType
minimum This property is required. Number
default Number
maximum Number
scaleType String | "None" | "Manual" | "Automatic"

SkuSettingResponse
, SkuSettingResponseArgs

SkuSettingResponseCapacity
, SkuSettingResponseCapacityArgs

Minimum This property is required. int
Default int
Maximum int
ScaleType string
Minimum This property is required. int
Default int
Maximum int
ScaleType string
minimum This property is required. Integer
default_ Integer
maximum Integer
scaleType String
minimum This property is required. number
default number
maximum number
scaleType string
minimum This property is required. int
default int
maximum int
scale_type str
minimum This property is required. Number
default Number
maximum Number
scaleType String

SkuZoneDetail
, SkuZoneDetailArgs

SkuZoneDetailResponse
, SkuZoneDetailResponseArgs

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:SkusNestedResourceTypeSecond Microsoft.Contoso/ /subscriptions/{subscriptionId}/providers/Microsoft.ProviderHub/providerRegistrations/{providerNamespace}/resourcetypeRegistrations/{resourceType}/resourcetypeRegistrations/{nestedResourceTypeFirst}/resourcetypeRegistrations/{nestedResourceTypeSecond}/skus/{sku} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0