Skip to content

Commit

Permalink
Add reboot parameters for multiple replicas per master. (#12712)
Browse files Browse the repository at this point in the history
* Add reboot parameters for multiple replicas per master.

* Update the preview version in csproj.
  • Loading branch information
Priya91 authored and prmathur-microsoft committed Jul 8, 2020
1 parent 0217992 commit ca29cf4
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 26 deletions.
12 changes: 6 additions & 6 deletions eng/mgmt/mgmtmetadata/redis_resource-manager.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Installing AutoRest version: latest
Installing AutoRest version: v2
AutoRest installed successfully.
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/redis/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\repos\azuresdknetfork\azure-sdk-for-net\sdk
2019-11-23 01:25:48 UTC
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/redis/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\azure-sdk-for-net\sdk
2020-06-11 05:53:09 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 381b06c1a2483f4de61bd211a337c8e45e342fc4
Commit: edbb9cc14033a8ec1b8f97232589ea9d7524e7ac
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4407
Requested version: v2
Bootstrapper version: autorest@2.0.4413

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 @@ -6,11 +6,10 @@
<PropertyGroup>
<PackageId>Microsoft.Azure.Management.Redis</PackageId>
<Description>Provides redis cache management capabilities for Microsoft Azure.</Description>
<Version>6.0.0-preview.1</Version>
<Version>6.0.0-preview.2</Version>
<AssemblyName>Microsoft.Azure.Management.Redis</AssemblyName>
<PackageTags>Microsoft Azure Redis Cache management;Redis Management;</PackageTags>
<PackageReleaseNotes>Added "ReplicasPerMaster" property for Cache Create, Update operations
Added "ReplicasPerMaster" and "instances" property to the output of Cache Create, Update and Get operations</PackageReleaseNotes>
<PackageReleaseNotes>Added support for specifying ports to RedisRebootParameters to enable rebooting cache instances based on their exposed port information.</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>$(SdkTargetFx)</TargetFrameworks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public void BeginCreateFunctionalTest()
Assert.Null(response.Instances[i].NonSslPort);
Assert.Null(response.Instances[i].ShardId);
Assert.Null(response.Instances[i].Zone);
Assert.Null(response.Instances[i].IsMaster);
}

for (int i = 0; i < 60; i++)
Expand Down

0 comments on commit ca29cf4

Please sign in to comment.