Skip to content
Closed
15 changes: 15 additions & 0 deletions eng/mgmt/mgmtmetadata/botservice_resource-manager.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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/botservice/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp.output-folder=D:\work\azure-sdk-for-net\sdk\botservice\Microsoft.Azure.Management.BotService\src\Generated
Autorest CSharp Version: 2.3.82
2021-05-14 00:09:09 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 7d4caa5e1c9996a25300b0b23ef426667e4a7bde
AutoRest information
Requested version: v2
Bootstrapper version: [email protected]
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>BotService_2017-12-01;</AzureApiTag>
<AzureApiTag>BotService_2021-03-01;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Bot Service SDK for .NET

## Building SDK

```bash
# from the root of the repo
msbuild build.proj /p:scope=botService
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Microsoft.Azure.Management.BotService.Models
{
public partial class EmailChannelProperties
{
public EmailChannelProperties(string emailAddress, string password, bool isEnabled): this(emailAddress, isEnabled, password) {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Microsoft.Azure.Management.BotService.Models
{
using System.Collections.Generic;
public partial class FacebookChannelProperties
{
public FacebookChannelProperties(string appId, string appSecret, bool isEnabled, string verifyToken = default(string), IList<FacebookPage> pages = default(IList<FacebookPage>), string callbackUrl = default(string)):
this(appId, isEnabled, verifyToken: verifyToken, pages: pages, appSecret: appSecret, callbackUrl: callbackUrl) {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace Microsoft.Azure.Management.BotService.Models
{
public partial class KikChannelProperties
{
public KikChannelProperties(string userName, string apiKey, bool isEnabled, bool? isValidated = default(bool?)) :
this(userName, isEnabled, apiKey: apiKey, isValidated: isValidated) {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace Microsoft.Azure.Management.BotService.Models
{
public partial class SmsChannelProperties
{
public SmsChannelProperties(string phone, string accountSID, string authToken, bool isEnabled, bool? isValidated = default(bool?)):
this(phone, accountSID, isEnabled, isValidated: isValidated, authToken: authToken) {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace Microsoft.Azure.Management.BotService.Models
{
public partial class TelegramChannelProperties
{
public TelegramChannelProperties(string accessToken, bool isEnabled, bool? isValidated = default(bool?)):
this(isEnabled, accessToken: accessToken, isValidated: isValidated) {}
}
}

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

Loading