-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AutoPr-Batch-jafreck-REST Spec PrNumber 5472 (#5582)
* .NET SDK Resource Provider:'Batch' REST Spec PR 'Azure/azure-rest-api-specs#5472' REST Spec PR Author 'jafreck' REST Spec PR Last commit * .NET SDK Resource Provider:'Batch' REST Spec PR 'Azure/azure-rest-api-specs#5472' REST Spec PR Author 'jafreck' REST Spec PR Last commit * .NET SDK Resource Provider:'Batch' REST Spec PR 'Azure/azure-rest-api-specs#5472' REST Spec PR Author 'jafreck' REST Spec PR Last commit * .NET SDK Resource Provider:'Batch' REST Spec PR 'Azure/azure-rest-api-specs#5472' REST Spec PR Author 'jafreck' REST Spec PR Last commit
- Loading branch information
Showing
5 changed files
with
125 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file--> | ||
<PropertyGroup> | ||
<AzureApiTag>BatchService_2018-08-01.7.0;</AzureApiTag> | ||
<AzureApiTag>Batch_2019-04-01;</AzureApiTag> | ||
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
src/SDKs/Batch/Management/Management.Batch/Generated/Models/VirtualMachineFamilyCoreQuota.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.Batch.Models | ||
{ | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// A VM Family and its associated core quota for the Batch account. | ||
/// </summary> | ||
public partial class VirtualMachineFamilyCoreQuota | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the VirtualMachineFamilyCoreQuota | ||
/// class. | ||
/// </summary> | ||
public VirtualMachineFamilyCoreQuota() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the VirtualMachineFamilyCoreQuota | ||
/// class. | ||
/// </summary> | ||
/// <param name="name">The Virtual Machine family name.</param> | ||
/// <param name="coreQuota">The core quota for the VM family for the | ||
/// Batch account.</param> | ||
public VirtualMachineFamilyCoreQuota(string name = default(string), int coreQuota = default(int)) | ||
{ | ||
Name = name; | ||
CoreQuota = coreQuota; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets the Virtual Machine family name. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "name")] | ||
public string Name { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the core quota for the VM family for the Batch account. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "coreQuota")] | ||
public int CoreQuota { get; private set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters