Skip to content

Commit

Permalink
.NET SDK Resource Provider:'Batch'
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#5472'
REST Spec PR Author 'jafreck'
REST Spec PR Last commit
  • Loading branch information
adxsdknet committed Apr 3, 2019
1 parent af3a882 commit d19eae8
Showing 1 changed file with 18 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,17 @@ public BatchAccount()
/// <param name="autoStorage">The properties and status of any
/// auto-storage account associated with the Batch account.</param>
/// <param name="dedicatedCoreQuota">The dedicated core quota for the
/// Batch account.</param>
/// Batch account. For accounts with PoolAllocationMode set to
/// UserSubscription, quota is managed on the subscription so this
/// value is null.</param>
/// <param name="lowPriorityCoreQuota">The low-priority core quota for
/// the Batch account.</param>
/// the Batch account. For accounts with PoolAllocationMode set to
/// UserSubscription, quota is managed on the subscription so this
/// value is null.</param>
/// <param name="dedicatedCoreQuotaPerVMFamily">A list of the dedicated
/// core quota per Virtual Machine family for the Batch
/// account.</param>
/// core quota per Virtual Machine family for the Batch account. For
/// accounts with PoolAllocationMode set to UserSubscription, quota is
/// managed on the subscription so this value is null.</param>
/// <param name="dedicatedCoreQuotaPerVMFamilyEnforced">A value
/// indicating whether the core quota for the Batch Account is enforced
/// per Virtual Machine family or not.</param>
Expand Down Expand Up @@ -125,20 +130,26 @@ public BatchAccount()
public AutoStorageProperties AutoStorage { get; private set; }

/// <summary>
/// Gets the dedicated core quota for the Batch account.
/// Gets the dedicated core quota for the Batch account. For accounts
/// with PoolAllocationMode set to UserSubscription, quota is managed
/// on the subscription so this value is null.
/// </summary>
[JsonProperty(PropertyName = "properties.dedicatedCoreQuota")]
public int DedicatedCoreQuota { get; private set; }

/// <summary>
/// Gets the low-priority core quota for the Batch account.
/// Gets the low-priority core quota for the Batch account. For
/// accounts with PoolAllocationMode set to UserSubscription, quota is
/// managed on the subscription so this value is null.
/// </summary>
[JsonProperty(PropertyName = "properties.lowPriorityCoreQuota")]
public int LowPriorityCoreQuota { get; private set; }

/// <summary>
/// Gets a list of the dedicated core quota per Virtual Machine family
/// for the Batch account.
/// for the Batch account. For accounts with PoolAllocationMode set to
/// UserSubscription, quota is managed on the subscription so this
/// value is null.
/// </summary>
[JsonProperty(PropertyName = "properties.dedicatedCoreQuotaPerVMFamily")]
public IList<VirtualMachineFamilyCoreQuota> DedicatedCoreQuotaPerVMFamily { get; private set; }
Expand Down

0 comments on commit d19eae8

Please sign in to comment.