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

Fix a breaking change and update the change log #21821

Merged
merged 2 commits into from
Jun 11, 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
6 changes: 3 additions & 3 deletions eng/mgmt/mgmtmetadata/mediaservices_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ 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/mediaservices/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --opt-in-extensible-enums --tag=package-2021-05 --csharp-sdks-folder=D:\GitHub\giakasRepros\azure-sdk-for-net\sdk
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/mediaservices/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --opt-in-extensible-enums --tag=package-2021-05 --csharp-sdks-folder=D:\GitHub\Azure\azure-sdk-for-net\sdk
Autorest CSharp Version: 2.3.82
2021-06-08 21:23:09 UTC
2021-06-11 18:06:38 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: e134a5f2e59827fc73b21c12e397dead18548877
Commit: e92d236d96ab4e229a9943ddea7a7534982a4028
AutoRest information
Requested version: v2
Bootstrapper version: autorest@1.9.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Microsoft.Azure.Management.Media release notes

## Changes in 3.0.5
## Changes in 4.0.0

- Added KeyDelivery Access control property to Media Services that allows restricting KeyDelivery requests by IP address ranges

### Breaking changes

- Media serice constructor has new optional Key delivery parameter after encryption parameter.
- Media service update call is expecting an object of a new class MediaServiceUpdate. The MediaServiceUpdate class is similar to MediaService class, except it doesn't have location property.

## Changes in 3.0.4

This SDK is using 2020-05-01 version of the API.
Expand Down

This file was deleted.

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,7 +6,7 @@
<PropertyGroup>
<PackageId>Microsoft.Azure.Management.Media</PackageId>
<Description>Provides developers with libraries for managing Azure Media Services using the Azure Resource Manager API.</Description>
<Version>3.0.5</Version>
<Version>4.0.0</Version>
<AssemblyName>Microsoft.Azure.Management.Media</AssemblyName>
<PackageTags>Microsoft Azure Media management;Media;Media management;</PackageTags>
<PackageReleaseNotes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
[assembly: AssemblyTitle("Microsoft Azure Media Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Media.")]

[assembly: AssemblyVersion("3.0.5.0")]
[assembly: AssemblyFileVersion("3.0.5.0")]
[assembly: AssemblyVersion("4.0.0.0")]
[assembly: AssemblyFileVersion("4.0.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Azure .NET SDK")]
Expand Down