Compute limits shared by the subscription.
Uses Azure REST API version 2025-08-15.
Example Usage
Create a shared limit
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var sharedLimit = new AzureNative.ComputeLimit.SharedLimit("sharedLimit", new()
{
Location = "eastus",
Name = "StandardDSv3Family",
});
});
package main
import (
computelimit "github.com/pulumi/pulumi-azure-native-sdk/computelimit/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := computelimit.NewSharedLimit(ctx, "sharedLimit", &computelimit.SharedLimitArgs{
Location: pulumi.String("eastus"),
Name: pulumi.String("StandardDSv3Family"),
})
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.computelimit.SharedLimit;
import com.pulumi.azurenative.computelimit.SharedLimitArgs;
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 sharedLimit = new SharedLimit("sharedLimit", SharedLimitArgs.builder()
.location("eastus")
.name("StandardDSv3Family")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sharedLimit = new azure_native.computelimit.SharedLimit("sharedLimit", {
location: "eastus",
name: "StandardDSv3Family",
});
import pulumi
import pulumi_azure_native as azure_native
shared_limit = azure_native.computelimit.SharedLimit("sharedLimit",
location="eastus",
name="StandardDSv3Family")
resources:
sharedLimit:
type: azure-native:computelimit:SharedLimit
properties:
location: eastus
name: StandardDSv3Family
Create SharedLimit Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SharedLimit(name: string, args: SharedLimitArgs, opts?: CustomResourceOptions);@overload
def SharedLimit(resource_name: str,
args: SharedLimitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SharedLimit(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
name: Optional[str] = None)func NewSharedLimit(ctx *Context, name string, args SharedLimitArgs, opts ...ResourceOption) (*SharedLimit, error)public SharedLimit(string name, SharedLimitArgs args, CustomResourceOptions? opts = null)
public SharedLimit(String name, SharedLimitArgs args)
public SharedLimit(String name, SharedLimitArgs args, CustomResourceOptions options)
type: azure-native:computelimit:SharedLimit
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 SharedLimitArgs
- 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 SharedLimitArgs
- 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 SharedLimitArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SharedLimitArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SharedLimitArgs
- 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 sharedLimitResource = new AzureNative.ComputeLimit.SharedLimit("sharedLimitResource", new()
{
Location = "string",
Name = "string",
});
example, err := computelimit.NewSharedLimit(ctx, "sharedLimitResource", &computelimit.SharedLimitArgs{
Location: pulumi.String("string"),
Name: pulumi.String("string"),
})
var sharedLimitResource = new SharedLimit("sharedLimitResource", SharedLimitArgs.builder()
.location("string")
.name("string")
.build());
shared_limit_resource = azure_native.computelimit.SharedLimit("sharedLimitResource",
location="string",
name="string")
const sharedLimitResource = new azure_native.computelimit.SharedLimit("sharedLimitResource", {
location: "string",
name: "string",
});
type: azure-native:computelimit:SharedLimit
properties:
location: string
name: string
SharedLimit 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 SharedLimit resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the SharedLimit resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Limit int
- The maximum permitted usage of the resource.
- Provisioning
State string - The provisioning state of the resource.
- Resource
Name Pulumi.Azure Native. Compute Limit. Outputs. Limit Name Response - The limit name properties.
- System
Data Pulumi.Azure Native. Compute Limit. Outputs. System Data Response - 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"
- Unit string
- The quota units, such as Count.
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Limit int
- The maximum permitted usage of the resource.
- Provisioning
State string - The provisioning state of the resource.
- Resource
Name LimitName Response - The limit name properties.
- System
Data SystemData Response - 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"
- Unit string
- The quota units, such as Count.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- limit Integer
- The maximum permitted usage of the resource.
- provisioning
State String - The provisioning state of the resource.
- resource
Name LimitName Response - The limit name properties.
- system
Data SystemData Response - 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"
- unit String
- The quota units, such as Count.
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- limit number
- The maximum permitted usage of the resource.
- provisioning
State string - The provisioning state of the resource.
- resource
Name LimitName Response - The limit name properties.
- system
Data SystemData Response - 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"
- unit string
- The quota units, such as Count.
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- limit int
- The maximum permitted usage of the resource.
- provisioning_
state str - The provisioning state of the resource.
- resource_
name LimitName Response - The limit name properties.
- system_
data SystemData Response - 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"
- unit str
- The quota units, such as Count.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- limit Number
- The maximum permitted usage of the resource.
- provisioning
State String - The provisioning state of the resource.
- resource
Name Property Map - The limit name properties.
- system
Data 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"
- unit String
- The quota units, such as Count.
Supporting Types
LimitNameResponse, LimitNameResponseArgs
Properties of the limit name.- Localized
Value string - The localized limit name.
- Value string
- The limit name.
- Localized
Value string - The localized limit name.
- Value string
- The limit name.
- localized
Value String - The localized limit name.
- value String
- The limit name.
- localized
Value string - The localized limit name.
- value string
- The limit name.
- localized_
value str - The localized limit name.
- value str
- The limit name.
- localized
Value String - The localized limit name.
- value String
- The limit name.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:computelimit:SharedLimit StandardDSv3Family /subscriptions/{subscriptionId}/providers/Microsoft.ComputeLimit/locations/{location}/sharedLimits/{name}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
