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

Add missing properties to ArchiveFunctionApp #514

Merged
merged 2 commits into from
Apr 7, 2020
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ CHANGELOG
=========

## HEAD (Unreleased)
_(none)_
* Add several properties to ArchiveFunctionApp.
([#514](https://github.com/pulumi/pulumi-azure/pull/514))

---

Expand Down
15 changes: 15 additions & 0 deletions sdk/nodejs/appservice/zMixins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ interface FunctionAppArgsBase {
*/
readonly appSettings?: pulumi.Input<{ [key: string]: any; }>;

/**
* A `authSettings` block as defined below.
*/
readonly authSettings?: pulumi.Input<inputs.appservice.FunctionAppAuthSettings>;

/**
* Should the Function App send session affinity cookies, which route client requests in the same session to the same instance?
*/
Expand All @@ -129,6 +134,11 @@ interface FunctionAppArgsBase {
*/
readonly container?: storageForTypesOnly.Container;

/**
* The amount of memory in gigabyte-seconds that your application is allowed to consume per day. Setting this value only affects function apps under the consumption plan. Defaults to `0`.
*/
readonly dailyMemoryTimeQuota?: pulumi.Input<number>;

/**
* Should the built-in logging of this Function App be enabled? Defaults to `true`.
*/
Expand Down Expand Up @@ -170,6 +180,11 @@ interface FunctionAppArgsBase {
*/
readonly nodeVersion?: pulumi.Input<string>;

/**
* A string indicating the Operating System type for this function app.
*/
readonly osType?: pulumi.Input<string>;

/**
* The App Service Plan within which to create this Function App. Changing this forces a new
* resource to be created.
Expand Down