Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update containerinstance client to 2021-09-01 API #24713

Merged
merged 3 commits into from
Oct 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/containerinstance/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\Users\josephporter\source\azure-sdk-for-net\sdk
2021-09-17 17:58:36 UTC
2021-10-13 20:55:27 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: e07d7900e7e02c9bb6caba0ee15f0e280e97b8f5
Commit: 314f28163917b9cfc527f7776b5e4a1dea69d295
AutoRest information
Requested version: v2
Bootstrapper version: autorest@2.0.4413
Bootstrapper version: autorest@3.4.1
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>ContainerInstance_2021-07-01;</AzureApiTag>
<AzureApiTag>ContainerInstance_2021-09-01;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

<PropertyGroup>
<Description>Microsoft Azure Container Instance Management Library</Description>
<Version>5.0.0</Version>
<Version>6.0.0</Version>
<AssemblyName>Microsoft.Azure.Management.ContainerInstance</AssemblyName>
<PackageId>Microsoft.Azure.Management.ContainerInstance</PackageId>
<PackageTags>Microsoft Azure Container Instance Management;Container Instance;2021-07-01;</PackageTags>
<PackageTags>Microsoft Azure Container Instance Management;Container Instance;2021-09-01;</PackageTags>
<PackageReleaseNotes>
<![CDATA[
This is a release of the Azure Container Instance SDK. Included with this release is the removal of Network Profile, replaced by SubnetIds, as well as the addtion of Managed Identity authenticated ACR image pull.
This is a release of the Azure Container Instance SDK. Included with this release is the addition of the Zones property to support Availability Zones.
]]>
</PackageReleaseNotes>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
[assembly: AssemblyTitle("Microsoft Azure Container Instance Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Container Instance.")]

[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.0.0.0")]
[assembly: AssemblyVersion("6.0.0.0")]
[assembly: AssemblyFileVersion("6.0.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
Expand Down
Loading