Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Azure/azure-sdk-for-net
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: Charan000/azure-sdk-for-net
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 3 commits
  • 15 files changed
  • 1 contributor

Commits on Oct 4, 2022

  1. Copy the full SHA
    17a7cc6 View commit details
  2. AssemblyFileVersion update

    Charan000 committed Oct 4, 2022
    Copy the full SHA
    a936ea4 View commit details

Commits on Oct 7, 2022

  1. Copy the full SHA
    ec27ced View commit details
Showing with 1,975 additions and 6 deletions.
  1. +2 −2 eng/mgmt/mgmtmetadata/dataprotection_resource-manager.txt
  2. +1 −1 sdk/dataprotection/Microsoft.Azure.Management.DataProtection/AzSdk.RP.props
  3. +1,228 −0 ...ection/Microsoft.Azure.Management.DataProtection/src/Generated/DppResourceGuardProxyOperations.cs
  4. +248 −0 ...rosoft.Azure.Management.DataProtection/src/Generated/DppResourceGuardProxyOperationsExtensions.cs
  5. +5 −0 sdk/dataprotection/Microsoft.Azure.Management.DataProtection/src/Generated/IDataProtectionClient.cs
  6. +167 −0 ...ction/Microsoft.Azure.Management.DataProtection/src/Generated/IDppResourceGuardProxyOperations.cs
  7. +9 −1 ...ction/Microsoft.Azure.Management.DataProtection/src/Generated/Models/PatchResourceRequestInput.cs
  8. +54 −0 ...on/Microsoft.Azure.Management.DataProtection/src/Generated/Models/ResourceGuardOperationDetail.cs
  9. +25 −0 .../Microsoft.Azure.Management.DataProtection/src/Generated/Models/ResourceGuardProvisioningState.cs
  10. +66 −0 ...otection/Microsoft.Azure.Management.DataProtection/src/Generated/Models/ResourceGuardProxyBase.cs
  11. +58 −0 .../Microsoft.Azure.Management.DataProtection/src/Generated/Models/ResourceGuardProxyBaseResource.cs
  12. +57 −0 ...aprotection/Microsoft.Azure.Management.DataProtection/src/Generated/Models/UnlockDeleteRequest.cs
  13. +53 −0 ...protection/Microsoft.Azure.Management.DataProtection/src/Generated/Models/UnlockDeleteResponse.cs
  14. +1 −1 ...osoft.Azure.Management.DataProtection/src/Microsoft.Azure.Management.DataProtection.Backup.csproj
  15. +1 −1 sdk/dataprotection/Microsoft.Azure.Management.DataProtection/src/Properties/AssemblyInfo.cs
4 changes: 2 additions & 2 deletions eng/mgmt/mgmtmetadata/dataprotection_resource-manager.txt
Original file line number Diff line number Diff line change
@@ -5,11 +5,11 @@ Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/main/specification/dataprotection/resource-manager/readme.md --csharp --version=2.0.4421 --reflect-api-versions --csharp-sdks-folder=C:\Code\azure-sdk-for-net\sdk
Autorest CSharp Version: 2.3.82
2022-05-12 11:19:19 UTC
2022-10-03 06:08:48 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: main
Commit: 1278b951080f769d400bb5d03090de8bc21dc355
Commit: 33d5054122e52490eef9925d6cbe801f28b88e18
AutoRest information
Requested version: 2.0.4421
Bootstrapper version: autorest@2.0.4413
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>DataProtection_2021-01-01;DataProtection_2021-07-01;DataProtection_2022-04-01;</AzureApiTag>
<AzureApiTag>DataProtection_2021-01-01;DataProtection_2021-07-01;DataProtection_2022-04-01;DataProtection_2022-09-01-preview;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
Loading