ReservationQuotaCollection.CreateOrUpdate Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Create or update the quota (service limits) of a resource to the requested value. Steps:
- Make the Get request to get the quota information for specific resource.
- To increase the quota, update the limit field in the response from Get request to new value.
- 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.
- Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits/{resourceName}
- Operation Id: Quota_CreateOrUpdate
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Reservations.ReservationQuotaResource> CreateOrUpdate (Azure.WaitUntil waitUntil, string resourceName, Azure.ResourceManager.Reservations.ReservationQuotaData data, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Reservations.ReservationQuotaData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Reservations.ReservationQuotaResource>
override this.CreateOrUpdate : Azure.WaitUntil * string * Azure.ResourceManager.Reservations.ReservationQuotaData * System.Threading.CancellationToken -> Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Reservations.ReservationQuotaResource>
Public Overridable Function CreateOrUpdate (waitUntil As WaitUntil, resourceName As String, data As ReservationQuotaData, Optional cancellationToken As CancellationToken = Nothing) As ArmOperation(Of ReservationQuotaResource)
Parameters
- waitUntil
- WaitUntil
Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.
- resourceName
- String
The resource name for a resource provider, such as SKU name for Microsoft.Compute, Sku or TotalLowPriorityCores for Microsoft.MachineLearningServices.
- data
- ReservationQuotaData
Quota requests payload.
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
Exceptions
resourceName
is an empty string, and was expected to be non-empty.
resourceName
or data
is null.
Applies to
Azure SDK for .NET