共用方式為


QuotaOperationsExtensions.CreateOrUpdate Method

Definition

Create or update the quota (service limits) of a resource to the requested value. Steps:

  1. Make the Get request to get the quota information for specific resource.

  2. To increase the quota, update the limit field in the response from Get request to new value.

  3. Submit the JSON to the quota request API to update the quota. The Create quota request may be constructed as follows. The PUT operation can be used to update the quota.

public static object CreateOrUpdate (this Microsoft.Azure.Management.Reservations.IQuotaOperations operations, string subscriptionId, string providerId, string location, string resourceName, Microsoft.Azure.Management.Reservations.Models.CurrentQuotaLimitBase createQuotaRequest);
static member CreateOrUpdate : Microsoft.Azure.Management.Reservations.IQuotaOperations * string * string * string * string * Microsoft.Azure.Management.Reservations.Models.CurrentQuotaLimitBase -> obj
<Extension()>
Public Function CreateOrUpdate (operations As IQuotaOperations, subscriptionId As String, providerId As String, location As String, resourceName As String, createQuotaRequest As CurrentQuotaLimitBase) As Object

Parameters

operations
IQuotaOperations

The operations group for this extension method.

subscriptionId
String

Azure subscription ID.

providerId
String

Azure resource provider ID.

location
String

Azure region.

resourceName
String

The resource name for a resource provider, such as SKU name for Microsoft.Compute, Sku or TotalLowPriorityCores for Microsoft.MachineLearningServices

createQuotaRequest
CurrentQuotaLimitBase

Quota requests payload.

Returns

Applies to