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

[Communication] Add 2020-08-20 stable version #19615

Merged
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
@@ -1,7 +1,17 @@
# Release History

## 1.0.0-beta.4 (Unreleased)
## 1.0.0 (Unreleased)
This is the first stable release of the management library for Azure Communication Services.

Minor changes since the public preview release:
- CheckNameAvailability has been added
- CommunicationServiceResource Update now requires a CommunicationServiceResource parameter instead of a TaggedResource
- RegenerateKeyParameters is now a required parameter to RegenerateKey
- CommunicationServiceResource now includes the property SystemData
- OperationList has been changed to use the common type for its response
- ErrorResponse has been changed to use the common type for ErrorResponse

## 1.0.0-beta.4 (Unreleased)

## 1.0.0-beta.3 (2020-11-16)
Updated `Azure.ResourceManager.Communication` version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Use the management library for Azure Communication Services to:
Install the Azure Management SDK for .NET with [NuGet][nuget]:

```PowerShell
dotnet add package Azure.ResourceManager.Communication --version 1.0.0-beta.3
dotnet add package Azure.ResourceManager.Communication --version 1.0.0
```

### Include the client library
Expand Down Expand Up @@ -148,7 +148,7 @@ Your instance of the Communication Services Management client library client (``

#### Create a Communication Services resource

When creating a Communication Services resource, you'll specify the resource group name and resource name. Note that the `Location` property will always be `global`, and during public preview the `DataLocation` value must be `UnitedStates`.
When creating a Communication Services resource, you'll specify the resource group name and resource name. Note that the `Location` property will always be `global` and the `DataLocation` value must be `UnitedStates`.

```csharp
var resourceGroupName = "myResourceGroupName";
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0-beta.4</Version>
<Version>1.0.0</Version>
<PackageId>Azure.ResourceManager.Communication</PackageId>
<Description>
Azure management client SDK for Azure resource provider Microsoft.Communication.
Expand Down

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.

Loading