Skip to content

Commit

Permalink
.NET SDK Resource Provider:'Batch' (#5878)
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#5720'
REST Spec PR Author 'jafreck'
REST Spec PR Last commit
  • Loading branch information
adxsdknet authored and dsgouda committed Apr 22, 2019
1 parent 4cf4631 commit c436316
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public BatchAccount()
/// account.</param>
/// <param name="activeJobAndJobScheduleQuota">The active job and job
/// schedule quota for the Batch account.</param>
public BatchAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), string accountEndpoint = default(string), ProvisioningState provisioningState = default(ProvisioningState), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference), AutoStorageProperties autoStorage = default(AutoStorageProperties), int dedicatedCoreQuota = default(int), int? lowPriorityCoreQuota = default(int?), IList<VirtualMachineFamilyCoreQuota> dedicatedCoreQuotaPerVMFamily = default(IList<VirtualMachineFamilyCoreQuota>), bool dedicatedCoreQuotaPerVMFamilyEnforced = default(bool), int poolQuota = default(int), int activeJobAndJobScheduleQuota = default(int))
public BatchAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), string accountEndpoint = default(string), ProvisioningState provisioningState = default(ProvisioningState), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference), AutoStorageProperties autoStorage = default(AutoStorageProperties), int? dedicatedCoreQuota = default(int?), int? lowPriorityCoreQuota = default(int?), IList<VirtualMachineFamilyCoreQuota> dedicatedCoreQuotaPerVMFamily = default(IList<VirtualMachineFamilyCoreQuota>), bool dedicatedCoreQuotaPerVMFamilyEnforced = default(bool), int poolQuota = default(int), int activeJobAndJobScheduleQuota = default(int))
: base(id, name, type, location, tags)
{
AccountEndpoint = accountEndpoint;
Expand Down Expand Up @@ -133,7 +133,7 @@ public BatchAccount()
/// is managed on the subscription so this value is not returned.
/// </remarks>
[JsonProperty(PropertyName = "properties.dedicatedCoreQuota")]
public int DedicatedCoreQuota { get; private set; }
public int? DedicatedCoreQuota { get; private set; }

/// <summary>
/// Gets the low-priority core quota for the Batch account.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ public CloudServiceConfiguration()
/// Possible values are: 2 - OS Family 2, equivalent to Windows Server
/// 2008 R2 SP1. 3 - OS Family 3, equivalent to Windows Server 2012. 4
/// - OS Family 4, equivalent to Windows Server 2012 R2. 5 - OS Family
/// 5, equivalent to Windows Server 2016. For more information, see
/// Azure Guest OS Releases
/// 5, equivalent to Windows Server 2016. 6 - OS Family 6, equivalent
/// to Windows Server 2019. For more information, see Azure Guest OS
/// Releases
/// (https://azure.microsoft.com/documentation/articles/cloud-services-guestos-update-matrix/#releases).
/// </remarks>
[JsonProperty(PropertyName = "osFamily")]
Expand Down

0 comments on commit c436316

Please sign in to comment.