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

Added enhancements on top of Calling Server preview 1 #21686

Merged
merged 36 commits into from
Jun 21, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3a31cac
Clean up clients comments.
zihzhan-msft Jun 8, 2021
2aac1b8
Models updates to introduce CallConnection and Server.
navali-msft Jun 8, 2021
89e1158
callState updated to callConnectionState, replace sourceAlternateIden…
navali-msft Jun 8, 2021
2cdc4b8
Update to the test sample.
navali-msft Jun 8, 2021
8c07b7b
Updated the swagger path, removed delete operation, updated unit test…
navali-msft Jun 8, 2021
e6322ed
Updates based on comments
navali-msft Jun 8, 2021
09a1452
Merge branch 'feature/CallingServer-changes' into feature/callingServ…
zihzhan-msft Jun 9, 2021
bf54682
Zihzhan/fix (#21727)
zihzhan-msft Jun 9, 2021
f1efa58
Merge branch 'feature/callingServer-preview1-enhancement' of https://…
zihzhan-msft Jun 10, 2021
f3aebeb
pull master without Downloader merge.
zihzhan-msft Jun 10, 2021
720d59c
Zihzhan/fix (#21764)
zihzhan-msft Jun 10, 2021
0161219
Model name updates (Suffix for responses models now has Result instea…
navali-msft Jun 10, 2021
c310ffe
Zihzhan/fix (#21805)
zihzhan-msft Jun 10, 2021
37c4531
The changes which are done: (#21863)
navali-msft Jun 15, 2021
37c39d4
Fix build Anaylse.
zihzhan-msft Jun 15, 2021
29ce1ed
fix(tests): improve code coverage
chrwhit Jun 15, 2021
1717a69
Merge branch 'feature/callingServer-preview1-enhancement' of https://…
chrwhit Jun 15, 2021
20e4121
Added AddParticipantResult, Re-added communication error, updated swa…
navali-msft Jun 15, 2021
e829b98
Analysis fix
navali-msft Jun 15, 2021
162c75e
Updated event type for add participant
navali-msft Jun 15, 2021
1a9464f
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-net i…
zihzhan-msft Jun 16, 2021
58ffcc3
Fix build issue.
zihzhan-msft Jun 16, 2021
2e163e6
Zihzhan/fix (#21905)
zihzhan-msft Jun 16, 2021
f93d076
Zihzhan/fix (#21931)
zihzhan-msft Jun 17, 2021
1657f3e
Zihzhan/fix (#21950)
zihzhan-msft Jun 18, 2021
0a76c1a
Address comments.
zihzhan-msft Jun 18, 2021
e264d03
Naming changes.
zihzhan-msft Jun 18, 2021
fbc6d87
Change to static connection string.
zihzhan-msft Jun 18, 2021
b5d2464
Add methods that support Live Test.
zihzhan-msft Jun 18, 2021
beaae94
Moved Recorded value inside the test method.
zihzhan-msft Jun 19, 2021
c5670ab
Updated models definition based on new swagger plus updated events pr…
navali-msft Jun 19, 2021
6d505c9
Update auto gen apis.
zihzhan-msft Jun 19, 2021
072566e
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-net int…
zihzhan-msft Jun 19, 2021
4d49521
Rewrite the event tests and fixed json for other tests (#21983)
navali-msft Jun 19, 2021
5b86515
Disable AddParticipant test in Live mode.
zihzhan-msft Jun 19, 2021
1efe0fd
Moved modelfactory to .models namespace (#22021)
navali-msft Jun 21, 2021
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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@
namespace Azure.Communication.CallingServer
{
/// <summary>
/// The options for communication <see cref="CallClient"/>.
/// The options for communication <see cref="CallConnection"/> and <see cref="ServerCall"/>.
/// </summary>
public class CallClientOptions : ClientOptions
public class CallingServerClientOptions : ClientOptions
{
/// <summary>
/// The latest version of the CallingServer service.
/// </summary>
public const ServiceVersion LatestVersion = ServiceVersion.V2021_04_15_Preview1;
public const ServiceVersion LatestVersion = ServiceVersion.V2021_06_15_Preview;

internal string ApiVersion { get; }

/// <summary>
/// Initializes a new instance of the <see cref="CallClientOptions"/>.
/// Initializes a new instance of the <see cref="CallingServerClientOptions"/>.
/// </summary>
public CallClientOptions(ServiceVersion version = LatestVersion)
public CallingServerClientOptions(ServiceVersion version = LatestVersion)
{
ApiVersion = version switch
{
ServiceVersion.V2021_04_15_Preview1 => "2021-04-15-preview1",
ServiceVersion.V2021_06_15_Preview => "2021-06-15-preview",
_ => throw new ArgumentOutOfRangeException(nameof(version)),
};
}
Expand All @@ -39,7 +39,7 @@ public enum ServiceVersion
/// The Beta of the CallingServer service.
/// </summary>
#pragma warning disable CA1707 // Identifiers should not contain underscores
V2021_04_15_Preview1 = 0
V2021_06_15_Preview = 0
#pragma warning restore CA1707 // Identifiers should not contain underscores
}
}
Expand Down

This file was deleted.

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

Large diffs are not rendered by default.

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.

This file was deleted.

This file was deleted.

Loading