-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add more Linux and Windows docker versions * FunctionAppDockerVersions * . * FunctionAppEditModes FunctionAppWorkerRuntimes * 003
- Loading branch information
Showing
7 changed files
with
75 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/~https://github.com/StefH/GitHubReleaseNotes | ||
|
||
GitHubReleaseNotes.exe --output CHANGELOG.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.2 | ||
GitHubReleaseNotes.exe --output CHANGELOG.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/Pulumi.Azure.Constants/FunctionApp/FunctionAppEditModes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// ReSharper disable once CheckNamespace | ||
namespace Pulumi.Azure.Constants | ||
{ | ||
/// <summary> | ||
/// Dictates whether editing in the Azure portal is enabled. | ||
/// </summary> | ||
public static class FunctionAppEditModes | ||
{ | ||
public const string ReadWrite = "readwrite"; | ||
|
||
public const string Readonly = "readonly"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/Pulumi.Azure.Constants/FunctionApp/FunctionAppSiteConfigWindowsVersions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// ReSharper disable once CheckNamespace | ||
namespace Pulumi.Azure.Constants | ||
{ | ||
/// <summary> | ||
/// Windows App Framework and version for the AppService. | ||
/// </summary> | ||
public static class FunctionAppSiteConfigWindowsVersions | ||
{ | ||
public const string DotNetV2NanoServer1709 = "DOCKER|mcr.microsoft.com/azure-functions/dotnet:2.0-nanoserver-1709"; | ||
|
||
public const string DotNetV2NanoServer1803 = "DOCKER|mcr.microsoft.com/azure-functions/dotnet:2.0-nanoserver-1803"; | ||
|
||
public const string DotNetV2NanoServer1809 = "DOCKER|mcr.microsoft.com/azure-functions/dotnet:2.0-nanoserver-1809"; | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
src/Pulumi.Azure.Constants/FunctionApp/FunctionAppWorkerRuntimes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// ReSharper disable once CheckNamespace | ||
namespace Pulumi.Azure.Constants | ||
{ | ||
/// <summary> | ||
/// he language worker runtime to load in the function app. This will correspond to the language being used in your application (for example, "dotnet"). | ||
/// For functions in multiple languages you will need to publish them to multiple apps, each with a corresponding worker runtime value. | ||
/// </summary> | ||
public static class FunctionAppWorkerRuntimes | ||
{ | ||
/// <summary> | ||
/// C#/F# | ||
/// </summary> | ||
public const string DotNet = "dotnet"; | ||
|
||
/// <summary> | ||
/// JavaScript/TypeScript | ||
/// </summary> | ||
public const string Node = "node"; | ||
|
||
/// <summary> | ||
/// Java | ||
/// </summary> | ||
public const string Java = "java"; | ||
|
||
/// <summary> | ||
/// PowerShell | ||
/// </summary> | ||
public const string PowerShell = "powershell"; | ||
|
||
/// <summary> | ||
/// Python | ||
/// </summary> | ||
public const string Python = "python"; | ||
} | ||
} |