We recommend using Azure Native.
Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi
azure.appservice.getLinuxFunctionApp
Explore with Pulumi AI
Use this data source to access information about an existing Linux Function App.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.appservice.getLinuxFunctionApp({
name: "existing",
resourceGroupName: "existing",
});
export const id = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.appservice.get_linux_function_app(name="existing",
resource_group_name="existing")
pulumi.export("id", example.id)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := appservice.LookupLinuxFunctionApp(ctx, &appservice.LookupLinuxFunctionAppArgs{
Name: "existing",
ResourceGroupName: "existing",
}, nil)
if err != nil {
return err
}
ctx.Export("id", example.Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = Azure.AppService.GetLinuxFunctionApp.Invoke(new()
{
Name = "existing",
ResourceGroupName = "existing",
});
return new Dictionary<string, object?>
{
["id"] = example.Apply(getLinuxFunctionAppResult => getLinuxFunctionAppResult.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.appservice.AppserviceFunctions;
import com.pulumi.azure.appservice.inputs.GetLinuxFunctionAppArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = AppserviceFunctions.getLinuxFunctionApp(GetLinuxFunctionAppArgs.builder()
.name("existing")
.resourceGroupName("existing")
.build());
ctx.export("id", example.applyValue(getLinuxFunctionAppResult -> getLinuxFunctionAppResult.id()));
}
}
variables:
example:
fn::invoke:
function: azure:appservice:getLinuxFunctionApp
arguments:
name: existing
resourceGroupName: existing
outputs:
id: ${example.id}
Using getLinuxFunctionApp
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLinuxFunctionApp(args: GetLinuxFunctionAppArgs, opts?: InvokeOptions): Promise<GetLinuxFunctionAppResult>
function getLinuxFunctionAppOutput(args: GetLinuxFunctionAppOutputArgs, opts?: InvokeOptions): Output<GetLinuxFunctionAppResult>
def get_linux_function_app(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetLinuxFunctionAppResult
def get_linux_function_app_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLinuxFunctionAppResult]
func LookupLinuxFunctionApp(ctx *Context, args *LookupLinuxFunctionAppArgs, opts ...InvokeOption) (*LookupLinuxFunctionAppResult, error)
func LookupLinuxFunctionAppOutput(ctx *Context, args *LookupLinuxFunctionAppOutputArgs, opts ...InvokeOption) LookupLinuxFunctionAppResultOutput
> Note: This function is named LookupLinuxFunctionApp
in the Go SDK.
public static class GetLinuxFunctionApp
{
public static Task<GetLinuxFunctionAppResult> InvokeAsync(GetLinuxFunctionAppArgs args, InvokeOptions? opts = null)
public static Output<GetLinuxFunctionAppResult> Invoke(GetLinuxFunctionAppInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLinuxFunctionAppResult> getLinuxFunctionApp(GetLinuxFunctionAppArgs args, InvokeOptions options)
public static Output<GetLinuxFunctionAppResult> getLinuxFunctionApp(GetLinuxFunctionAppArgs args, InvokeOptions options)
fn::invoke:
function: azure:appservice/getLinuxFunctionApp:getLinuxFunctionApp
arguments:
# arguments dictionary
The following arguments are supported:
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Resource
Group Name This property is required. string - The name of the Resource Group where the Linux Function App should exist.
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Resource
Group Name This property is required. string - The name of the Resource Group where the Linux Function App should exist.
- name
This property is required. String - The name which should be used for this Linux Function App.
- resource
Group Name This property is required. String - The name of the Resource Group where the Linux Function App should exist.
- name
This property is required. string - The name which should be used for this Linux Function App.
- resource
Group Name This property is required. string - The name of the Resource Group where the Linux Function App should exist.
- name
This property is required. str - The name which should be used for this Linux Function App.
- resource_
group_ name This property is required. str - The name of the Resource Group where the Linux Function App should exist.
- name
This property is required. String - The name which should be used for this Linux Function App.
- resource
Group Name This property is required. String - The name of the Resource Group where the Linux Function App should exist.
getLinuxFunctionApp Result
The following output properties are available:
- App
Settings Dictionary<string, string> - A map of key-value pairs for App Settings and custom values.
- Auth
Settings List<GetLinux Function App Auth Setting> - A
auth_settings
block as defined below. - Auth
Settings List<GetV2s Linux Function App Auth Settings V2> - A
auth_settings_v2
block as defined below. - Availability string
- The current availability state. Possible values are
Normal
,Limited
, andDisasterRecoveryMode
. - Backups
List<Get
Linux Function App Backup> - A
backup
block as defined below. - Builtin
Logging boolEnabled - Is built in logging enabled?
- Client
Certificate boolEnabled - Are Client Certificates enabled?
- Client
Certificate stringExclusion Paths - Paths to exclude when using client certificates, separated by ;
- Client
Certificate stringMode - The mode of the Function App's client certificates requirement for incoming requests.
- Connection
Strings List<GetLinux Function App Connection String> - A
connection_string
blocks as defined below. - bool
- Are the settings for linking the Function App to storage suppressed?
- Custom
Domain stringVerification Id - The identifier used by App Service to perform domain ownership verification via DNS TXT record.
- Daily
Memory intTime Quota - The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
- Default
Hostname string - The default hostname of the Linux Function App.
- Enabled bool
- Is this backup job enabled?
- Ftp
Publish boolBasic Authentication Enabled - Are the default FTP Basic Authentication publishing credentials enabled.
- Functions
Extension stringVersion - The runtime version associated with the Function App.
- Hosting
Environment stringId - The ID of the App Service Environment used by Function App.
- Https
Only bool - Can the Function App only be accessed via HTTPS?
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
List<Get
Linux Function App Identity> - A
identity
block as defined below. - Kind string
- The Kind value for this Linux Function App.
- Location string
- The Azure Region where the Linux Function App exists.
- Name string
- The Site Credentials Username used for publishing.
- Outbound
Ip List<string>Address Lists - A list of outbound IP addresses. For example
["52.23.25.3", "52.143.43.12"]
- Outbound
Ip stringAddresses - A comma separated list of outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12
. - Possible
Outbound List<string>Ip Address Lists - A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of
outbound_ip_address_list
. For example["52.23.25.3", "52.143.43.12"]
. - Possible
Outbound stringIp Addresses - A comma separated list of possible outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12,52.143.43.17
. This is a superset ofoutbound_ip_addresses
. - Public
Network boolAccess Enabled - Is Public Network Access enabled for this Linux Function App.
- Resource
Group stringName - Service
Plan stringId - The ID of the App Service Plan within which this Function App has been created.
- Site
Configs List<GetLinux Function App Site Config> - A
site_config
block as defined below. - Site
Credentials List<GetLinux Function App Site Credential> - A
site_credential
block as defined below. - Sticky
Settings List<GetLinux Function App Sticky Setting> - A
sticky_settings
block as defined below. - Storage
Account stringAccess Key - The access key used to access the backend storage account for the Function App.
- Storage
Account stringName - The backend storage account name used by this Function App.
- Storage
Key stringVault Secret Id - The Key Vault Secret ID, including version, that contains the Connection String to connect to the storage account for this Function App.
- Storage
Uses boolManaged Identity - Does the Function App use Managed Identity to access the storage account?
- Dictionary<string, string>
- A mapping of tags which are assigned to the Linux Function App.
- Usage string
- The current usage state. Possible values are
Normal
andExceeded
. - Virtual
Network boolBackup Restore Enabled - Whether backup and restore operations over the linked virtual network are enabled.
- Virtual
Network stringSubnet Id - The Virtual Network Subnet ID used for this IP Restriction.
- Webdeploy
Publish boolBasic Authentication Enabled - Are the default WebDeploy Basic Authentication publishing credentials enabled.
- App
Settings map[string]string - A map of key-value pairs for App Settings and custom values.
- Auth
Settings []GetLinux Function App Auth Setting - A
auth_settings
block as defined below. - Auth
Settings []GetV2s Linux Function App Auth Settings V2 - A
auth_settings_v2
block as defined below. - Availability string
- The current availability state. Possible values are
Normal
,Limited
, andDisasterRecoveryMode
. - Backups
[]Get
Linux Function App Backup - A
backup
block as defined below. - Builtin
Logging boolEnabled - Is built in logging enabled?
- Client
Certificate boolEnabled - Are Client Certificates enabled?
- Client
Certificate stringExclusion Paths - Paths to exclude when using client certificates, separated by ;
- Client
Certificate stringMode - The mode of the Function App's client certificates requirement for incoming requests.
- Connection
Strings []GetLinux Function App Connection String - A
connection_string
blocks as defined below. - bool
- Are the settings for linking the Function App to storage suppressed?
- Custom
Domain stringVerification Id - The identifier used by App Service to perform domain ownership verification via DNS TXT record.
- Daily
Memory intTime Quota - The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
- Default
Hostname string - The default hostname of the Linux Function App.
- Enabled bool
- Is this backup job enabled?
- Ftp
Publish boolBasic Authentication Enabled - Are the default FTP Basic Authentication publishing credentials enabled.
- Functions
Extension stringVersion - The runtime version associated with the Function App.
- Hosting
Environment stringId - The ID of the App Service Environment used by Function App.
- Https
Only bool - Can the Function App only be accessed via HTTPS?
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
[]Get
Linux Function App Identity - A
identity
block as defined below. - Kind string
- The Kind value for this Linux Function App.
- Location string
- The Azure Region where the Linux Function App exists.
- Name string
- The Site Credentials Username used for publishing.
- Outbound
Ip []stringAddress Lists - A list of outbound IP addresses. For example
["52.23.25.3", "52.143.43.12"]
- Outbound
Ip stringAddresses - A comma separated list of outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12
. - Possible
Outbound []stringIp Address Lists - A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of
outbound_ip_address_list
. For example["52.23.25.3", "52.143.43.12"]
. - Possible
Outbound stringIp Addresses - A comma separated list of possible outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12,52.143.43.17
. This is a superset ofoutbound_ip_addresses
. - Public
Network boolAccess Enabled - Is Public Network Access enabled for this Linux Function App.
- Resource
Group stringName - Service
Plan stringId - The ID of the App Service Plan within which this Function App has been created.
- Site
Configs []GetLinux Function App Site Config - A
site_config
block as defined below. - Site
Credentials []GetLinux Function App Site Credential - A
site_credential
block as defined below. - Sticky
Settings []GetLinux Function App Sticky Setting - A
sticky_settings
block as defined below. - Storage
Account stringAccess Key - The access key used to access the backend storage account for the Function App.
- Storage
Account stringName - The backend storage account name used by this Function App.
- Storage
Key stringVault Secret Id - The Key Vault Secret ID, including version, that contains the Connection String to connect to the storage account for this Function App.
- Storage
Uses boolManaged Identity - Does the Function App use Managed Identity to access the storage account?
- map[string]string
- A mapping of tags which are assigned to the Linux Function App.
- Usage string
- The current usage state. Possible values are
Normal
andExceeded
. - Virtual
Network boolBackup Restore Enabled - Whether backup and restore operations over the linked virtual network are enabled.
- Virtual
Network stringSubnet Id - The Virtual Network Subnet ID used for this IP Restriction.
- Webdeploy
Publish boolBasic Authentication Enabled - Are the default WebDeploy Basic Authentication publishing credentials enabled.
- app
Settings Map<String,String> - A map of key-value pairs for App Settings and custom values.
- auth
Settings List<GetLinux Function App Auth Setting> - A
auth_settings
block as defined below. - auth
Settings List<GetV2s Linux Function App Auth Settings V2> - A
auth_settings_v2
block as defined below. - availability String
- The current availability state. Possible values are
Normal
,Limited
, andDisasterRecoveryMode
. - backups
List<Get
Linux Function App Backup> - A
backup
block as defined below. - builtin
Logging BooleanEnabled - Is built in logging enabled?
- client
Certificate BooleanEnabled - Are Client Certificates enabled?
- client
Certificate StringExclusion Paths - Paths to exclude when using client certificates, separated by ;
- client
Certificate StringMode - The mode of the Function App's client certificates requirement for incoming requests.
- connection
Strings List<GetLinux Function App Connection String> - A
connection_string
blocks as defined below. - Boolean
- Are the settings for linking the Function App to storage suppressed?
- custom
Domain StringVerification Id - The identifier used by App Service to perform domain ownership verification via DNS TXT record.
- daily
Memory IntegerTime Quota - The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
- default
Hostname String - The default hostname of the Linux Function App.
- enabled Boolean
- Is this backup job enabled?
- ftp
Publish BooleanBasic Authentication Enabled - Are the default FTP Basic Authentication publishing credentials enabled.
- functions
Extension StringVersion - The runtime version associated with the Function App.
- hosting
Environment StringId - The ID of the App Service Environment used by Function App.
- https
Only Boolean - Can the Function App only be accessed via HTTPS?
- id String
- The provider-assigned unique ID for this managed resource.
- identities
List<Get
Linux Function App Identity> - A
identity
block as defined below. - kind String
- The Kind value for this Linux Function App.
- location String
- The Azure Region where the Linux Function App exists.
- name String
- The Site Credentials Username used for publishing.
- outbound
Ip List<String>Address Lists - A list of outbound IP addresses. For example
["52.23.25.3", "52.143.43.12"]
- outbound
Ip StringAddresses - A comma separated list of outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12
. - possible
Outbound List<String>Ip Address Lists - A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of
outbound_ip_address_list
. For example["52.23.25.3", "52.143.43.12"]
. - possible
Outbound StringIp Addresses - A comma separated list of possible outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12,52.143.43.17
. This is a superset ofoutbound_ip_addresses
. - public
Network BooleanAccess Enabled - Is Public Network Access enabled for this Linux Function App.
- resource
Group StringName - service
Plan StringId - The ID of the App Service Plan within which this Function App has been created.
- site
Configs List<GetLinux Function App Site Config> - A
site_config
block as defined below. - site
Credentials List<GetLinux Function App Site Credential> - A
site_credential
block as defined below. - sticky
Settings List<GetLinux Function App Sticky Setting> - A
sticky_settings
block as defined below. - storage
Account StringAccess Key - The access key used to access the backend storage account for the Function App.
- storage
Account StringName - The backend storage account name used by this Function App.
- storage
Key StringVault Secret Id - The Key Vault Secret ID, including version, that contains the Connection String to connect to the storage account for this Function App.
- storage
Uses BooleanManaged Identity - Does the Function App use Managed Identity to access the storage account?
- Map<String,String>
- A mapping of tags which are assigned to the Linux Function App.
- usage String
- The current usage state. Possible values are
Normal
andExceeded
. - virtual
Network BooleanBackup Restore Enabled - Whether backup and restore operations over the linked virtual network are enabled.
- virtual
Network StringSubnet Id - The Virtual Network Subnet ID used for this IP Restriction.
- webdeploy
Publish BooleanBasic Authentication Enabled - Are the default WebDeploy Basic Authentication publishing credentials enabled.
- app
Settings {[key: string]: string} - A map of key-value pairs for App Settings and custom values.
- auth
Settings GetLinux Function App Auth Setting[] - A
auth_settings
block as defined below. - auth
Settings GetV2s Linux Function App Auth Settings V2[] - A
auth_settings_v2
block as defined below. - availability string
- The current availability state. Possible values are
Normal
,Limited
, andDisasterRecoveryMode
. - backups
Get
Linux Function App Backup[] - A
backup
block as defined below. - builtin
Logging booleanEnabled - Is built in logging enabled?
- client
Certificate booleanEnabled - Are Client Certificates enabled?
- client
Certificate stringExclusion Paths - Paths to exclude when using client certificates, separated by ;
- client
Certificate stringMode - The mode of the Function App's client certificates requirement for incoming requests.
- connection
Strings GetLinux Function App Connection String[] - A
connection_string
blocks as defined below. - boolean
- Are the settings for linking the Function App to storage suppressed?
- custom
Domain stringVerification Id - The identifier used by App Service to perform domain ownership verification via DNS TXT record.
- daily
Memory numberTime Quota - The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
- default
Hostname string - The default hostname of the Linux Function App.
- enabled boolean
- Is this backup job enabled?
- ftp
Publish booleanBasic Authentication Enabled - Are the default FTP Basic Authentication publishing credentials enabled.
- functions
Extension stringVersion - The runtime version associated with the Function App.
- hosting
Environment stringId - The ID of the App Service Environment used by Function App.
- https
Only boolean - Can the Function App only be accessed via HTTPS?
- id string
- The provider-assigned unique ID for this managed resource.
- identities
Get
Linux Function App Identity[] - A
identity
block as defined below. - kind string
- The Kind value for this Linux Function App.
- location string
- The Azure Region where the Linux Function App exists.
- name string
- The Site Credentials Username used for publishing.
- outbound
Ip string[]Address Lists - A list of outbound IP addresses. For example
["52.23.25.3", "52.143.43.12"]
- outbound
Ip stringAddresses - A comma separated list of outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12
. - possible
Outbound string[]Ip Address Lists - A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of
outbound_ip_address_list
. For example["52.23.25.3", "52.143.43.12"]
. - possible
Outbound stringIp Addresses - A comma separated list of possible outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12,52.143.43.17
. This is a superset ofoutbound_ip_addresses
. - public
Network booleanAccess Enabled - Is Public Network Access enabled for this Linux Function App.
- resource
Group stringName - service
Plan stringId - The ID of the App Service Plan within which this Function App has been created.
- site
Configs GetLinux Function App Site Config[] - A
site_config
block as defined below. - site
Credentials GetLinux Function App Site Credential[] - A
site_credential
block as defined below. - sticky
Settings GetLinux Function App Sticky Setting[] - A
sticky_settings
block as defined below. - storage
Account stringAccess Key - The access key used to access the backend storage account for the Function App.
- storage
Account stringName - The backend storage account name used by this Function App.
- storage
Key stringVault Secret Id - The Key Vault Secret ID, including version, that contains the Connection String to connect to the storage account for this Function App.
- storage
Uses booleanManaged Identity - Does the Function App use Managed Identity to access the storage account?
- {[key: string]: string}
- A mapping of tags which are assigned to the Linux Function App.
- usage string
- The current usage state. Possible values are
Normal
andExceeded
. - virtual
Network booleanBackup Restore Enabled - Whether backup and restore operations over the linked virtual network are enabled.
- virtual
Network stringSubnet Id - The Virtual Network Subnet ID used for this IP Restriction.
- webdeploy
Publish booleanBasic Authentication Enabled - Are the default WebDeploy Basic Authentication publishing credentials enabled.
- app_
settings Mapping[str, str] - A map of key-value pairs for App Settings and custom values.
- auth_
settings Sequence[GetLinux Function App Auth Setting] - A
auth_settings
block as defined below. - auth_
settings_ Sequence[Getv2s Linux Function App Auth Settings V2] - A
auth_settings_v2
block as defined below. - availability str
- The current availability state. Possible values are
Normal
,Limited
, andDisasterRecoveryMode
. - backups
Sequence[Get
Linux Function App Backup] - A
backup
block as defined below. - builtin_
logging_ boolenabled - Is built in logging enabled?
- client_
certificate_ boolenabled - Are Client Certificates enabled?
- client_
certificate_ strexclusion_ paths - Paths to exclude when using client certificates, separated by ;
- client_
certificate_ strmode - The mode of the Function App's client certificates requirement for incoming requests.
- connection_
strings Sequence[GetLinux Function App Connection String] - A
connection_string
blocks as defined below. - bool
- Are the settings for linking the Function App to storage suppressed?
- custom_
domain_ strverification_ id - The identifier used by App Service to perform domain ownership verification via DNS TXT record.
- daily_
memory_ inttime_ quota - The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
- default_
hostname str - The default hostname of the Linux Function App.
- enabled bool
- Is this backup job enabled?
- ftp_
publish_ boolbasic_ authentication_ enabled - Are the default FTP Basic Authentication publishing credentials enabled.
- functions_
extension_ strversion - The runtime version associated with the Function App.
- hosting_
environment_ strid - The ID of the App Service Environment used by Function App.
- https_
only bool - Can the Function App only be accessed via HTTPS?
- id str
- The provider-assigned unique ID for this managed resource.
- identities
Sequence[Get
Linux Function App Identity] - A
identity
block as defined below. - kind str
- The Kind value for this Linux Function App.
- location str
- The Azure Region where the Linux Function App exists.
- name str
- The Site Credentials Username used for publishing.
- outbound_
ip_ Sequence[str]address_ lists - A list of outbound IP addresses. For example
["52.23.25.3", "52.143.43.12"]
- outbound_
ip_ straddresses - A comma separated list of outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12
. - possible_
outbound_ Sequence[str]ip_ address_ lists - A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of
outbound_ip_address_list
. For example["52.23.25.3", "52.143.43.12"]
. - possible_
outbound_ strip_ addresses - A comma separated list of possible outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12,52.143.43.17
. This is a superset ofoutbound_ip_addresses
. - public_
network_ boolaccess_ enabled - Is Public Network Access enabled for this Linux Function App.
- resource_
group_ strname - service_
plan_ strid - The ID of the App Service Plan within which this Function App has been created.
- site_
configs Sequence[GetLinux Function App Site Config] - A
site_config
block as defined below. - site_
credentials Sequence[GetLinux Function App Site Credential] - A
site_credential
block as defined below. - sticky_
settings Sequence[GetLinux Function App Sticky Setting] - A
sticky_settings
block as defined below. - storage_
account_ straccess_ key - The access key used to access the backend storage account for the Function App.
- storage_
account_ strname - The backend storage account name used by this Function App.
- storage_
key_ strvault_ secret_ id - The Key Vault Secret ID, including version, that contains the Connection String to connect to the storage account for this Function App.
- storage_
uses_ boolmanaged_ identity - Does the Function App use Managed Identity to access the storage account?
- Mapping[str, str]
- A mapping of tags which are assigned to the Linux Function App.
- usage str
- The current usage state. Possible values are
Normal
andExceeded
. - virtual_
network_ boolbackup_ restore_ enabled - Whether backup and restore operations over the linked virtual network are enabled.
- virtual_
network_ strsubnet_ id - The Virtual Network Subnet ID used for this IP Restriction.
- webdeploy_
publish_ boolbasic_ authentication_ enabled - Are the default WebDeploy Basic Authentication publishing credentials enabled.
- app
Settings Map<String> - A map of key-value pairs for App Settings and custom values.
- auth
Settings List<Property Map> - A
auth_settings
block as defined below. - auth
Settings List<Property Map>V2s - A
auth_settings_v2
block as defined below. - availability String
- The current availability state. Possible values are
Normal
,Limited
, andDisasterRecoveryMode
. - backups List<Property Map>
- A
backup
block as defined below. - builtin
Logging BooleanEnabled - Is built in logging enabled?
- client
Certificate BooleanEnabled - Are Client Certificates enabled?
- client
Certificate StringExclusion Paths - Paths to exclude when using client certificates, separated by ;
- client
Certificate StringMode - The mode of the Function App's client certificates requirement for incoming requests.
- connection
Strings List<Property Map> - A
connection_string
blocks as defined below. - Boolean
- Are the settings for linking the Function App to storage suppressed?
- custom
Domain StringVerification Id - The identifier used by App Service to perform domain ownership verification via DNS TXT record.
- daily
Memory NumberTime Quota - The amount of memory in gigabyte-seconds that your application is allowed to consume per day.
- default
Hostname String - The default hostname of the Linux Function App.
- enabled Boolean
- Is this backup job enabled?
- ftp
Publish BooleanBasic Authentication Enabled - Are the default FTP Basic Authentication publishing credentials enabled.
- functions
Extension StringVersion - The runtime version associated with the Function App.
- hosting
Environment StringId - The ID of the App Service Environment used by Function App.
- https
Only Boolean - Can the Function App only be accessed via HTTPS?
- id String
- The provider-assigned unique ID for this managed resource.
- identities List<Property Map>
- A
identity
block as defined below. - kind String
- The Kind value for this Linux Function App.
- location String
- The Azure Region where the Linux Function App exists.
- name String
- The Site Credentials Username used for publishing.
- outbound
Ip List<String>Address Lists - A list of outbound IP addresses. For example
["52.23.25.3", "52.143.43.12"]
- outbound
Ip StringAddresses - A comma separated list of outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12
. - possible
Outbound List<String>Ip Address Lists - A list of possible outbound IP addresses, not all of which are necessarily in use. This is a superset of
outbound_ip_address_list
. For example["52.23.25.3", "52.143.43.12"]
. - possible
Outbound StringIp Addresses - A comma separated list of possible outbound IP addresses as a string. For example
52.23.25.3,52.143.43.12,52.143.43.17
. This is a superset ofoutbound_ip_addresses
. - public
Network BooleanAccess Enabled - Is Public Network Access enabled for this Linux Function App.
- resource
Group StringName - service
Plan StringId - The ID of the App Service Plan within which this Function App has been created.
- site
Configs List<Property Map> - A
site_config
block as defined below. - site
Credentials List<Property Map> - A
site_credential
block as defined below. - sticky
Settings List<Property Map> - A
sticky_settings
block as defined below. - storage
Account StringAccess Key - The access key used to access the backend storage account for the Function App.
- storage
Account StringName - The backend storage account name used by this Function App.
- storage
Key StringVault Secret Id - The Key Vault Secret ID, including version, that contains the Connection String to connect to the storage account for this Function App.
- storage
Uses BooleanManaged Identity - Does the Function App use Managed Identity to access the storage account?
- Map<String>
- A mapping of tags which are assigned to the Linux Function App.
- usage String
- The current usage state. Possible values are
Normal
andExceeded
. - virtual
Network BooleanBackup Restore Enabled - Whether backup and restore operations over the linked virtual network are enabled.
- virtual
Network StringSubnet Id - The Virtual Network Subnet ID used for this IP Restriction.
- webdeploy
Publish BooleanBasic Authentication Enabled - Are the default WebDeploy Basic Authentication publishing credentials enabled.
Supporting Types
GetLinuxFunctionAppAuthSetting
- Active
Directories This property is required. List<GetLinux Function App Auth Setting Active Directory> - An
active_directory
block as defined above. - Additional
Login Parameters This property is required. Dictionary<string, string> - A map of login parameters sent to the OpenID Connect authorization endpoint when a user logs in.
- Allowed
External Redirect Urls This property is required. List<string> - External URLs that can be redirected to as part of logging in or logging out of the app.
- Default
Provider This property is required. string - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - Enabled
This property is required. bool - Is this backup job enabled?
- Facebooks
This property is required. List<GetLinux Function App Auth Setting Facebook> - A
facebook
block as defined below. - Githubs
This property is required. List<GetLinux Function App Auth Setting Github> - A
github
block as defined below. - Googles
This property is required. List<GetLinux Function App Auth Setting Google> - A
google
block as defined below. - Issuer
This property is required. string - The OpenID Connect Issuer URI that represents the entity which issues access tokens for this Linux Web App.
- Microsofts
This property is required. List<GetLinux Function App Auth Setting Microsoft> - A
microsoft
block as defined below. - Runtime
Version This property is required. string - The Runtime Version of the Authentication and Authorisation feature of this App.
- Token
Refresh Extension Hours This property is required. double - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- Token
Store Enabled This property is required. bool - Is the Token Store configuration Enabled.
- Twitters
This property is required. List<GetLinux Function App Auth Setting Twitter> - A
twitter
block as defined below. - Unauthenticated
Client Action This property is required. string - The action to taken when an unauthenticated client attempts to access the app.
- Active
Directories This property is required. []GetLinux Function App Auth Setting Active Directory - An
active_directory
block as defined above. - Additional
Login Parameters This property is required. map[string]string - A map of login parameters sent to the OpenID Connect authorization endpoint when a user logs in.
- Allowed
External Redirect Urls This property is required. []string - External URLs that can be redirected to as part of logging in or logging out of the app.
- Default
Provider This property is required. string - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - Enabled
This property is required. bool - Is this backup job enabled?
- Facebooks
This property is required. []GetLinux Function App Auth Setting Facebook - A
facebook
block as defined below. - Githubs
This property is required. []GetLinux Function App Auth Setting Github - A
github
block as defined below. - Googles
This property is required. []GetLinux Function App Auth Setting Google - A
google
block as defined below. - Issuer
This property is required. string - The OpenID Connect Issuer URI that represents the entity which issues access tokens for this Linux Web App.
- Microsofts
This property is required. []GetLinux Function App Auth Setting Microsoft - A
microsoft
block as defined below. - Runtime
Version This property is required. string - The Runtime Version of the Authentication and Authorisation feature of this App.
- Token
Refresh Extension Hours This property is required. float64 - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- Token
Store Enabled This property is required. bool - Is the Token Store configuration Enabled.
- Twitters
This property is required. []GetLinux Function App Auth Setting Twitter - A
twitter
block as defined below. - Unauthenticated
Client Action This property is required. string - The action to taken when an unauthenticated client attempts to access the app.
- active
Directories This property is required. List<GetLinux Function App Auth Setting Active Directory> - An
active_directory
block as defined above. - additional
Login Parameters This property is required. Map<String,String> - A map of login parameters sent to the OpenID Connect authorization endpoint when a user logs in.
- allowed
External Redirect Urls This property is required. List<String> - External URLs that can be redirected to as part of logging in or logging out of the app.
- default
Provider This property is required. String - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - enabled
This property is required. Boolean - Is this backup job enabled?
- facebooks
This property is required. List<GetLinux Function App Auth Setting Facebook> - A
facebook
block as defined below. - githubs
This property is required. List<GetLinux Function App Auth Setting Github> - A
github
block as defined below. - googles
This property is required. List<GetLinux Function App Auth Setting Google> - A
google
block as defined below. - issuer
This property is required. String - The OpenID Connect Issuer URI that represents the entity which issues access tokens for this Linux Web App.
- microsofts
This property is required. List<GetLinux Function App Auth Setting Microsoft> - A
microsoft
block as defined below. - runtime
Version This property is required. String - The Runtime Version of the Authentication and Authorisation feature of this App.
- token
Refresh Extension Hours This property is required. Double - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token
Store Enabled This property is required. Boolean - Is the Token Store configuration Enabled.
- twitters
This property is required. List<GetLinux Function App Auth Setting Twitter> - A
twitter
block as defined below. - unauthenticated
Client Action This property is required. String - The action to taken when an unauthenticated client attempts to access the app.
- active
Directories This property is required. GetLinux Function App Auth Setting Active Directory[] - An
active_directory
block as defined above. - additional
Login Parameters This property is required. {[key: string]: string} - A map of login parameters sent to the OpenID Connect authorization endpoint when a user logs in.
- allowed
External Redirect Urls This property is required. string[] - External URLs that can be redirected to as part of logging in or logging out of the app.
- default
Provider This property is required. string - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - enabled
This property is required. boolean - Is this backup job enabled?
- facebooks
This property is required. GetLinux Function App Auth Setting Facebook[] - A
facebook
block as defined below. - githubs
This property is required. GetLinux Function App Auth Setting Github[] - A
github
block as defined below. - googles
This property is required. GetLinux Function App Auth Setting Google[] - A
google
block as defined below. - issuer
This property is required. string - The OpenID Connect Issuer URI that represents the entity which issues access tokens for this Linux Web App.
- microsofts
This property is required. GetLinux Function App Auth Setting Microsoft[] - A
microsoft
block as defined below. - runtime
Version This property is required. string - The Runtime Version of the Authentication and Authorisation feature of this App.
- token
Refresh Extension Hours This property is required. number - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token
Store Enabled This property is required. boolean - Is the Token Store configuration Enabled.
- twitters
This property is required. GetLinux Function App Auth Setting Twitter[] - A
twitter
block as defined below. - unauthenticated
Client Action This property is required. string - The action to taken when an unauthenticated client attempts to access the app.
- active_
directories This property is required. Sequence[GetLinux Function App Auth Setting Active Directory] - An
active_directory
block as defined above. - additional_
login_ parameters This property is required. Mapping[str, str] - A map of login parameters sent to the OpenID Connect authorization endpoint when a user logs in.
- allowed_
external_ redirect_ urls This property is required. Sequence[str] - External URLs that can be redirected to as part of logging in or logging out of the app.
- default_
provider This property is required. str - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - enabled
This property is required. bool - Is this backup job enabled?
- facebooks
This property is required. Sequence[GetLinux Function App Auth Setting Facebook] - A
facebook
block as defined below. - githubs
This property is required. Sequence[GetLinux Function App Auth Setting Github] - A
github
block as defined below. - googles
This property is required. Sequence[GetLinux Function App Auth Setting Google] - A
google
block as defined below. - issuer
This property is required. str - The OpenID Connect Issuer URI that represents the entity which issues access tokens for this Linux Web App.
- microsofts
This property is required. Sequence[GetLinux Function App Auth Setting Microsoft] - A
microsoft
block as defined below. - runtime_
version This property is required. str - The Runtime Version of the Authentication and Authorisation feature of this App.
- token_
refresh_ extension_ hours This property is required. float - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token_
store_ enabled This property is required. bool - Is the Token Store configuration Enabled.
- twitters
This property is required. Sequence[GetLinux Function App Auth Setting Twitter] - A
twitter
block as defined below. - unauthenticated_
client_ action This property is required. str - The action to taken when an unauthenticated client attempts to access the app.
- active
Directories This property is required. List<Property Map> - An
active_directory
block as defined above. - additional
Login Parameters This property is required. Map<String> - A map of login parameters sent to the OpenID Connect authorization endpoint when a user logs in.
- allowed
External Redirect Urls This property is required. List<String> - External URLs that can be redirected to as part of logging in or logging out of the app.
- default
Provider This property is required. String - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - enabled
This property is required. Boolean - Is this backup job enabled?
- facebooks
This property is required. List<Property Map> - A
facebook
block as defined below. - githubs
This property is required. List<Property Map> - A
github
block as defined below. - googles
This property is required. List<Property Map> - A
google
block as defined below. - issuer
This property is required. String - The OpenID Connect Issuer URI that represents the entity which issues access tokens for this Linux Web App.
- microsofts
This property is required. List<Property Map> - A
microsoft
block as defined below. - runtime
Version This property is required. String - The Runtime Version of the Authentication and Authorisation feature of this App.
- token
Refresh Extension Hours This property is required. Number - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token
Store Enabled This property is required. Boolean - Is the Token Store configuration Enabled.
- twitters
This property is required. List<Property Map> - A
twitter
block as defined below. - unauthenticated
Client Action This property is required. String - The action to taken when an unauthenticated client attempts to access the app.
GetLinuxFunctionAppAuthSettingActiveDirectory
- Allowed
Audiences This property is required. List<string> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Allowed
Audiences This property is required. []string - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- allowed
Audiences This property is required. string[] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- allowed_
audiences This property is required. Sequence[str] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret This property is required. str - The OAuth 2.0 client secret that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
GetLinuxFunctionAppAuthSettingFacebook
- App
Id This property is required. string - The App ID of the Facebook app used for login.
- App
Secret This property is required. string - The App Secret of the Facebook app used for Facebook login.
- App
Secret Setting Name This property is required. string - The app setting name that contains the
app_secret
value used for Facebook login. - Oauth
Scopes This property is required. List<string> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- App
Id This property is required. string - The App ID of the Facebook app used for login.
- App
Secret This property is required. string - The App Secret of the Facebook app used for Facebook login.
- App
Secret Setting Name This property is required. string - The app setting name that contains the
app_secret
value used for Facebook login. - Oauth
Scopes This property is required. []string - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- app
Id This property is required. String - The App ID of the Facebook app used for login.
- app
Secret This property is required. String - The App Secret of the Facebook app used for Facebook login.
- app
Secret Setting Name This property is required. String - The app setting name that contains the
app_secret
value used for Facebook login. - oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- app
Id This property is required. string - The App ID of the Facebook app used for login.
- app
Secret This property is required. string - The App Secret of the Facebook app used for Facebook login.
- app
Secret Setting Name This property is required. string - The app setting name that contains the
app_secret
value used for Facebook login. - oauth
Scopes This property is required. string[] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- app_
id This property is required. str - The App ID of the Facebook app used for login.
- app_
secret This property is required. str - The App Secret of the Facebook app used for Facebook login.
- app_
secret_ setting_ name This property is required. str - The app setting name that contains the
app_secret
value used for Facebook login. - oauth_
scopes This property is required. Sequence[str] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- app
Id This property is required. String - The App ID of the Facebook app used for login.
- app
Secret This property is required. String - The App Secret of the Facebook app used for Facebook login.
- app
Secret Setting Name This property is required. String - The app setting name that contains the
app_secret
value used for Facebook login. - oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingGithub
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Oauth
Scopes This property is required. List<string> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Oauth
Scopes This property is required. []string - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. string[] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret This property is required. str - The OAuth 2.0 client secret that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth_
scopes This property is required. Sequence[str] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingGoogle
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Oauth
Scopes This property is required. List<string> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Oauth
Scopes This property is required. []string - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. string[] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret This property is required. str - The OAuth 2.0 client secret that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth_
scopes This property is required. Sequence[str] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingMicrosoft
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Oauth
Scopes This property is required. List<string> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Oauth
Scopes This property is required. []string - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. string - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. string[] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret This property is required. str - The OAuth 2.0 client secret that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth_
scopes This property is required. Sequence[str] - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret This property is required. String - The OAuth 2.0 client secret that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- oauth
Scopes This property is required. List<String> - A list of OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingTwitter
- Consumer
Key This property is required. string - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- Consumer
Secret This property is required. string - The OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- Consumer
Secret Setting Name This property is required. string - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- Consumer
Key This property is required. string - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- Consumer
Secret This property is required. string - The OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- Consumer
Secret Setting Name This property is required. string - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Key This property is required. String - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer
Secret This property is required. String - The OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Secret Setting Name This property is required. String - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Key This property is required. string - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer
Secret This property is required. string - The OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Secret Setting Name This property is required. string - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer_
key This property is required. str - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer_
secret This property is required. str - The OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer_
secret_ setting_ name This property is required. str - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Key This property is required. String - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer
Secret This property is required. String - The OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Secret Setting Name This property is required. String - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
GetLinuxFunctionAppAuthSettingsV2
- Active
Directory V2s This property is required. List<GetLinux Function App Auth Settings V2Active Directory V2> - An
active_directory_v2
block as defined below. - Apple
V2s This property is required. List<GetLinux Function App Auth Settings V2Apple V2> - An
apple_v2
block as defined below. - Auth
Enabled This property is required. bool - Are the AuthV2 Settings enabled.
- Azure
Static Web App V2s This property is required. List<GetLinux Function App Auth Settings V2Azure Static Web App V2> - An
azure_static_web_app_v2
block as defined below. - Config
File Path This property is required. string - The path to the App Auth settings.
- Custom
Oidc V2s This property is required. List<GetLinux Function App Auth Settings V2Custom Oidc V2> - Zero or more
custom_oidc_v2
blocks as defined below. - Default
Provider This property is required. string - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - Excluded
Paths This property is required. List<string> - The paths which should be excluded from the
unauthenticated_action
when it is set toRedirectToLoginPage
. - Facebook
V2s This property is required. List<GetLinux Function App Auth Settings V2Facebook V2> - A
facebook_v2
block as defined below. - Forward
Proxy Convention This property is required. string - The convention used to determine the url of the request made.
- Forward
Proxy Custom Host Header Name This property is required. string - The name of the custom header containing the host of the request.
- Forward
Proxy Custom Scheme Header Name This property is required. string - The name of the custom header containing the scheme of the request.
- Github
V2s This property is required. List<GetLinux Function App Auth Settings V2Github V2> - A
github_v2
block as defined below. - Google
V2s This property is required. List<GetLinux Function App Auth Settings V2Google V2> - A
google_v2
block as defined below. - Http
Route Api Prefix This property is required. string - The prefix that should precede all the authentication and authorisation paths.
- Logins
This property is required. List<GetLinux Function App Auth Settings V2Login> - A
login
block as defined below. - Microsoft
V2s This property is required. List<GetLinux Function App Auth Settings V2Microsoft V2> - A
microsoft_v2
block as defined below. - Require
Authentication This property is required. bool - Is the authentication flow used for all requests.
- Require
Https This property is required. bool - Is HTTPS required on connections?
- Runtime
Version This property is required. string - The Runtime Version of the Authentication and Authorisation feature of this App.
- Twitter
V2s This property is required. List<GetLinux Function App Auth Settings V2Twitter V2> - A
twitter_v2
block as defined below. - Unauthenticated
Action This property is required. string - The action to take for requests made without authentication.
- Active
Directory V2s This property is required. []GetLinux Function App Auth Settings V2Active Directory V2 - An
active_directory_v2
block as defined below. - Apple
V2s This property is required. []GetLinux Function App Auth Settings V2Apple V2 - An
apple_v2
block as defined below. - Auth
Enabled This property is required. bool - Are the AuthV2 Settings enabled.
- Azure
Static Web App V2s This property is required. []GetLinux Function App Auth Settings V2Azure Static Web App V2 - An
azure_static_web_app_v2
block as defined below. - Config
File Path This property is required. string - The path to the App Auth settings.
- Custom
Oidc V2s This property is required. []GetLinux Function App Auth Settings V2Custom Oidc V2 - Zero or more
custom_oidc_v2
blocks as defined below. - Default
Provider This property is required. string - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - Excluded
Paths This property is required. []string - The paths which should be excluded from the
unauthenticated_action
when it is set toRedirectToLoginPage
. - Facebook
V2s This property is required. []GetLinux Function App Auth Settings V2Facebook V2 - A
facebook_v2
block as defined below. - Forward
Proxy Convention This property is required. string - The convention used to determine the url of the request made.
- Forward
Proxy Custom Host Header Name This property is required. string - The name of the custom header containing the host of the request.
- Forward
Proxy Custom Scheme Header Name This property is required. string - The name of the custom header containing the scheme of the request.
- Github
V2s This property is required. []GetLinux Function App Auth Settings V2Github V2 - A
github_v2
block as defined below. - Google
V2s This property is required. []GetLinux Function App Auth Settings V2Google V2 - A
google_v2
block as defined below. - Http
Route Api Prefix This property is required. string - The prefix that should precede all the authentication and authorisation paths.
- Logins
This property is required. []GetLinux Function App Auth Settings V2Login - A
login
block as defined below. - Microsoft
V2s This property is required. []GetLinux Function App Auth Settings V2Microsoft V2 - A
microsoft_v2
block as defined below. - Require
Authentication This property is required. bool - Is the authentication flow used for all requests.
- Require
Https This property is required. bool - Is HTTPS required on connections?
- Runtime
Version This property is required. string - The Runtime Version of the Authentication and Authorisation feature of this App.
- Twitter
V2s This property is required. []GetLinux Function App Auth Settings V2Twitter V2 - A
twitter_v2
block as defined below. - Unauthenticated
Action This property is required. string - The action to take for requests made without authentication.
- active
Directory V2s This property is required. List<GetLinux Function App Auth Settings V2Active Directory V2> - An
active_directory_v2
block as defined below. - apple
V2s This property is required. List<GetLinux Function App Auth Settings V2Apple V2> - An
apple_v2
block as defined below. - auth
Enabled This property is required. Boolean - Are the AuthV2 Settings enabled.
- azure
Static Web App V2s This property is required. List<GetLinux Function App Auth Settings V2Azure Static Web App V2> - An
azure_static_web_app_v2
block as defined below. - config
File Path This property is required. String - The path to the App Auth settings.
- custom
Oidc V2s This property is required. List<GetLinux Function App Auth Settings V2Custom Oidc V2> - Zero or more
custom_oidc_v2
blocks as defined below. - default
Provider This property is required. String - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - excluded
Paths This property is required. List<String> - The paths which should be excluded from the
unauthenticated_action
when it is set toRedirectToLoginPage
. - facebook
V2s This property is required. List<GetLinux Function App Auth Settings V2Facebook V2> - A
facebook_v2
block as defined below. - forward
Proxy Convention This property is required. String - The convention used to determine the url of the request made.
- forward
Proxy Custom Host Header Name This property is required. String - The name of the custom header containing the host of the request.
- forward
Proxy Custom Scheme Header Name This property is required. String - The name of the custom header containing the scheme of the request.
- github
V2s This property is required. List<GetLinux Function App Auth Settings V2Github V2> - A
github_v2
block as defined below. - google
V2s This property is required. List<GetLinux Function App Auth Settings V2Google V2> - A
google_v2
block as defined below. - http
Route Api Prefix This property is required. String - The prefix that should precede all the authentication and authorisation paths.
- logins
This property is required. List<GetLinux Function App Auth Settings V2Login> - A
login
block as defined below. - microsoft
V2s This property is required. List<GetLinux Function App Auth Settings V2Microsoft V2> - A
microsoft_v2
block as defined below. - require
Authentication This property is required. Boolean - Is the authentication flow used for all requests.
- require
Https This property is required. Boolean - Is HTTPS required on connections?
- runtime
Version This property is required. String - The Runtime Version of the Authentication and Authorisation feature of this App.
- twitter
V2s This property is required. List<GetLinux Function App Auth Settings V2Twitter V2> - A
twitter_v2
block as defined below. - unauthenticated
Action This property is required. String - The action to take for requests made without authentication.
- active
Directory V2s This property is required. GetLinux Function App Auth Settings V2Active Directory V2[] - An
active_directory_v2
block as defined below. - apple
V2s This property is required. GetLinux Function App Auth Settings V2Apple V2[] - An
apple_v2
block as defined below. - auth
Enabled This property is required. boolean - Are the AuthV2 Settings enabled.
- azure
Static Web App V2s This property is required. GetLinux Function App Auth Settings V2Azure Static Web App V2[] - An
azure_static_web_app_v2
block as defined below. - config
File Path This property is required. string - The path to the App Auth settings.
- custom
Oidc V2s This property is required. GetLinux Function App Auth Settings V2Custom Oidc V2[] - Zero or more
custom_oidc_v2
blocks as defined below. - default
Provider This property is required. string - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - excluded
Paths This property is required. string[] - The paths which should be excluded from the
unauthenticated_action
when it is set toRedirectToLoginPage
. - facebook
V2s This property is required. GetLinux Function App Auth Settings V2Facebook V2[] - A
facebook_v2
block as defined below. - forward
Proxy Convention This property is required. string - The convention used to determine the url of the request made.
- forward
Proxy Custom Host Header Name This property is required. string - The name of the custom header containing the host of the request.
- forward
Proxy Custom Scheme Header Name This property is required. string - The name of the custom header containing the scheme of the request.
- github
V2s This property is required. GetLinux Function App Auth Settings V2Github V2[] - A
github_v2
block as defined below. - google
V2s This property is required. GetLinux Function App Auth Settings V2Google V2[] - A
google_v2
block as defined below. - http
Route Api Prefix This property is required. string - The prefix that should precede all the authentication and authorisation paths.
- logins
This property is required. GetLinux Function App Auth Settings V2Login[] - A
login
block as defined below. - microsoft
V2s This property is required. GetLinux Function App Auth Settings V2Microsoft V2[] - A
microsoft_v2
block as defined below. - require
Authentication This property is required. boolean - Is the authentication flow used for all requests.
- require
Https This property is required. boolean - Is HTTPS required on connections?
- runtime
Version This property is required. string - The Runtime Version of the Authentication and Authorisation feature of this App.
- twitter
V2s This property is required. GetLinux Function App Auth Settings V2Twitter V2[] - A
twitter_v2
block as defined below. - unauthenticated
Action This property is required. string - The action to take for requests made without authentication.
- active_
directory_ v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Active Directory V2] - An
active_directory_v2
block as defined below. - apple_
v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Apple V2] - An
apple_v2
block as defined below. - auth_
enabled This property is required. bool - Are the AuthV2 Settings enabled.
- azure_
static_ web_ app_ v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Azure Static Web App V2] - An
azure_static_web_app_v2
block as defined below. - config_
file_ path This property is required. str - The path to the App Auth settings.
- custom_
oidc_ v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Custom Oidc V2] - Zero or more
custom_oidc_v2
blocks as defined below. - default_
provider This property is required. str - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - excluded_
paths This property is required. Sequence[str] - The paths which should be excluded from the
unauthenticated_action
when it is set toRedirectToLoginPage
. - facebook_
v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Facebook V2] - A
facebook_v2
block as defined below. - forward_
proxy_ convention This property is required. str - The convention used to determine the url of the request made.
- forward_
proxy_ custom_ host_ header_ name This property is required. str - The name of the custom header containing the host of the request.
- forward_
proxy_ custom_ scheme_ header_ name This property is required. str - The name of the custom header containing the scheme of the request.
- github_
v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Github V2] - A
github_v2
block as defined below. - google_
v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Google V2] - A
google_v2
block as defined below. - http_
route_ api_ prefix This property is required. str - The prefix that should precede all the authentication and authorisation paths.
- logins
This property is required. Sequence[GetLinux Function App Auth Settings V2Login] - A
login
block as defined below. - microsoft_
v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Microsoft V2] - A
microsoft_v2
block as defined below. - require_
authentication This property is required. bool - Is the authentication flow used for all requests.
- require_
https This property is required. bool - Is HTTPS required on connections?
- runtime_
version This property is required. str - The Runtime Version of the Authentication and Authorisation feature of this App.
- twitter_
v2s This property is required. Sequence[GetLinux Function App Auth Settings V2Twitter V2] - A
twitter_v2
block as defined below. - unauthenticated_
action This property is required. str - The action to take for requests made without authentication.
- active
Directory V2s This property is required. List<Property Map> - An
active_directory_v2
block as defined below. - apple
V2s This property is required. List<Property Map> - An
apple_v2
block as defined below. - auth
Enabled This property is required. Boolean - Are the AuthV2 Settings enabled.
- azure
Static Web App V2s This property is required. List<Property Map> - An
azure_static_web_app_v2
block as defined below. - config
File Path This property is required. String - The path to the App Auth settings.
- custom
Oidc V2s This property is required. List<Property Map> - Zero or more
custom_oidc_v2
blocks as defined below. - default
Provider This property is required. String - The Default Authentication Provider used when more than one Authentication Provider is configured and the
unauthenticated_action
is set toRedirectToLoginPage
. - excluded
Paths This property is required. List<String> - The paths which should be excluded from the
unauthenticated_action
when it is set toRedirectToLoginPage
. - facebook
V2s This property is required. List<Property Map> - A
facebook_v2
block as defined below. - forward
Proxy Convention This property is required. String - The convention used to determine the url of the request made.
- forward
Proxy Custom Host Header Name This property is required. String - The name of the custom header containing the host of the request.
- forward
Proxy Custom Scheme Header Name This property is required. String - The name of the custom header containing the scheme of the request.
- github
V2s This property is required. List<Property Map> - A
github_v2
block as defined below. - google
V2s This property is required. List<Property Map> - A
google_v2
block as defined below. - http
Route Api Prefix This property is required. String - The prefix that should precede all the authentication and authorisation paths.
- logins
This property is required. List<Property Map> - A
login
block as defined below. - microsoft
V2s This property is required. List<Property Map> - A
microsoft_v2
block as defined below. - require
Authentication This property is required. Boolean - Is the authentication flow used for all requests.
- require
Https This property is required. Boolean - Is HTTPS required on connections?
- runtime
Version This property is required. String - The Runtime Version of the Authentication and Authorisation feature of this App.
- twitter
V2s This property is required. List<Property Map> - A
twitter_v2
block as defined below. - unauthenticated
Action This property is required. String - The action to take for requests made without authentication.
GetLinuxFunctionAppAuthSettingsV2ActiveDirectoryV2
- Allowed
Applications This property is required. List<string> - The list of allowed Applications for the Default Authorisation Policy.
- Allowed
Audiences This property is required. List<string> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Allowed
Groups This property is required. List<string> - The list of allowed Group Names for the Default Authorisation Policy.
- Allowed
Identities This property is required. List<string> - The list of allowed Identities for the Default Authorisation Policy.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Certificate Thumbprint This property is required. string - The thumbprint of the certificate used for signing purposes.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Jwt
Allowed Client Applications This property is required. List<string> - The list of Allowed Client Applications in the JWT Claim.
- Jwt
Allowed Groups This property is required. List<string> - The list of Allowed Groups in the JWT Claim.
- Login
Parameters This property is required. Dictionary<string, string> - A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
- Tenant
Auth Endpoint This property is required. string - The Azure Tenant Endpoint for the Authenticating Tenant. e.g.
https://login.microsoftonline.com/{tenant-guid}/v2.0/
- Www
Authentication Disabled This property is required. bool - Is the www-authenticate provider omitted from the request?
- Allowed
Applications This property is required. []string - The list of allowed Applications for the Default Authorisation Policy.
- Allowed
Audiences This property is required. []string - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Allowed
Groups This property is required. []string - The list of allowed Group Names for the Default Authorisation Policy.
- Allowed
Identities This property is required. []string - The list of allowed Identities for the Default Authorisation Policy.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Certificate Thumbprint This property is required. string - The thumbprint of the certificate used for signing purposes.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Jwt
Allowed Client Applications This property is required. []string - The list of Allowed Client Applications in the JWT Claim.
- Jwt
Allowed Groups This property is required. []string - The list of Allowed Groups in the JWT Claim.
- Login
Parameters This property is required. map[string]string - A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
- Tenant
Auth Endpoint This property is required. string - The Azure Tenant Endpoint for the Authenticating Tenant. e.g.
https://login.microsoftonline.com/{tenant-guid}/v2.0/
- Www
Authentication Disabled This property is required. bool - Is the www-authenticate provider omitted from the request?
- allowed
Applications This property is required. List<String> - The list of allowed Applications for the Default Authorisation Policy.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- allowed
Groups This property is required. List<String> - The list of allowed Group Names for the Default Authorisation Policy.
- allowed
Identities This property is required. List<String> - The list of allowed Identities for the Default Authorisation Policy.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Certificate Thumbprint This property is required. String - The thumbprint of the certificate used for signing purposes.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- jwt
Allowed Client Applications This property is required. List<String> - The list of Allowed Client Applications in the JWT Claim.
- jwt
Allowed Groups This property is required. List<String> - The list of Allowed Groups in the JWT Claim.
- login
Parameters This property is required. Map<String,String> - A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
- tenant
Auth Endpoint This property is required. String - The Azure Tenant Endpoint for the Authenticating Tenant. e.g.
https://login.microsoftonline.com/{tenant-guid}/v2.0/
- www
Authentication Disabled This property is required. Boolean - Is the www-authenticate provider omitted from the request?
- allowed
Applications This property is required. string[] - The list of allowed Applications for the Default Authorisation Policy.
- allowed
Audiences This property is required. string[] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- allowed
Groups This property is required. string[] - The list of allowed Group Names for the Default Authorisation Policy.
- allowed
Identities This property is required. string[] - The list of allowed Identities for the Default Authorisation Policy.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Certificate Thumbprint This property is required. string - The thumbprint of the certificate used for signing purposes.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- jwt
Allowed Client Applications This property is required. string[] - The list of Allowed Client Applications in the JWT Claim.
- jwt
Allowed Groups This property is required. string[] - The list of Allowed Groups in the JWT Claim.
- login
Parameters This property is required. {[key: string]: string} - A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
- tenant
Auth Endpoint This property is required. string - The Azure Tenant Endpoint for the Authenticating Tenant. e.g.
https://login.microsoftonline.com/{tenant-guid}/v2.0/
- www
Authentication Disabled This property is required. boolean - Is the www-authenticate provider omitted from the request?
- allowed_
applications This property is required. Sequence[str] - The list of allowed Applications for the Default Authorisation Policy.
- allowed_
audiences This property is required. Sequence[str] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- allowed_
groups This property is required. Sequence[str] - The list of allowed Group Names for the Default Authorisation Policy.
- allowed_
identities This property is required. Sequence[str] - The list of allowed Identities for the Default Authorisation Policy.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret_ certificate_ thumbprint This property is required. str - The thumbprint of the certificate used for signing purposes.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- jwt_
allowed_ client_ applications This property is required. Sequence[str] - The list of Allowed Client Applications in the JWT Claim.
- jwt_
allowed_ groups This property is required. Sequence[str] - The list of Allowed Groups in the JWT Claim.
- login_
parameters This property is required. Mapping[str, str] - A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
- tenant_
auth_ endpoint This property is required. str - The Azure Tenant Endpoint for the Authenticating Tenant. e.g.
https://login.microsoftonline.com/{tenant-guid}/v2.0/
- www_
authentication_ disabled This property is required. bool - Is the www-authenticate provider omitted from the request?
- allowed
Applications This property is required. List<String> - The list of allowed Applications for the Default Authorisation Policy.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- allowed
Groups This property is required. List<String> - The list of allowed Group Names for the Default Authorisation Policy.
- allowed
Identities This property is required. List<String> - The list of allowed Identities for the Default Authorisation Policy.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Certificate Thumbprint This property is required. String - The thumbprint of the certificate used for signing purposes.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- jwt
Allowed Client Applications This property is required. List<String> - The list of Allowed Client Applications in the JWT Claim.
- jwt
Allowed Groups This property is required. List<String> - The list of Allowed Groups in the JWT Claim.
- login
Parameters This property is required. Map<String> - A map of key-value pairs sent to the Authorisation Endpoint when a user logs in.
- tenant
Auth Endpoint This property is required. String - The Azure Tenant Endpoint for the Authenticating Tenant. e.g.
https://login.microsoftonline.com/{tenant-guid}/v2.0/
- www
Authentication Disabled This property is required. Boolean - Is the www-authenticate provider omitted from the request?
GetLinuxFunctionAppAuthSettingsV2AppleV2
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. List<string> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. []string - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. string[] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login_
scopes This property is required. Sequence[str] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingsV2AzureStaticWebAppV2
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
GetLinuxFunctionAppAuthSettingsV2CustomOidcV2
This property is required. string- The endpoint to make the Authorisation Request as supplied by
openid_configuration_endpoint
response. - Certification
Uri This property is required. string - The endpoint that provides the keys necessary to validate the token as supplied by
openid_configuration_endpoint
response. - Client
Credential Method This property is required. string - The Client Credential Method used.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Issuer
Endpoint This property is required. string - The endpoint that issued the Token as supplied by
openid_configuration_endpoint
response. - Name
This property is required. string - The name which should be used for this Linux Function App.
- Name
Claim Type This property is required. string - The name of the claim that contains the users name.
- Openid
Configuration Endpoint This property is required. string - The endpoint used for OpenID Connect Discovery. For example
https://example.com/.well-known/openid-configuration
. - Scopes
This property is required. List<string> - The list of the scopes that are requested while authenticating.
- Token
Endpoint This property is required. string - The endpoint used to request a Token as supplied by
openid_configuration_endpoint
response.
This property is required. string- The endpoint to make the Authorisation Request as supplied by
openid_configuration_endpoint
response. - Certification
Uri This property is required. string - The endpoint that provides the keys necessary to validate the token as supplied by
openid_configuration_endpoint
response. - Client
Credential Method This property is required. string - The Client Credential Method used.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Issuer
Endpoint This property is required. string - The endpoint that issued the Token as supplied by
openid_configuration_endpoint
response. - Name
This property is required. string - The name which should be used for this Linux Function App.
- Name
Claim Type This property is required. string - The name of the claim that contains the users name.
- Openid
Configuration Endpoint This property is required. string - The endpoint used for OpenID Connect Discovery. For example
https://example.com/.well-known/openid-configuration
. - Scopes
This property is required. []string - The list of the scopes that are requested while authenticating.
- Token
Endpoint This property is required. string - The endpoint used to request a Token as supplied by
openid_configuration_endpoint
response.
This property is required. String- The endpoint to make the Authorisation Request as supplied by
openid_configuration_endpoint
response. - certification
Uri This property is required. String - The endpoint that provides the keys necessary to validate the token as supplied by
openid_configuration_endpoint
response. - client
Credential Method This property is required. String - The Client Credential Method used.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- issuer
Endpoint This property is required. String - The endpoint that issued the Token as supplied by
openid_configuration_endpoint
response. - name
This property is required. String - The name which should be used for this Linux Function App.
- name
Claim Type This property is required. String - The name of the claim that contains the users name.
- openid
Configuration Endpoint This property is required. String - The endpoint used for OpenID Connect Discovery. For example
https://example.com/.well-known/openid-configuration
. - scopes
This property is required. List<String> - The list of the scopes that are requested while authenticating.
- token
Endpoint This property is required. String - The endpoint used to request a Token as supplied by
openid_configuration_endpoint
response.
This property is required. string- The endpoint to make the Authorisation Request as supplied by
openid_configuration_endpoint
response. - certification
Uri This property is required. string - The endpoint that provides the keys necessary to validate the token as supplied by
openid_configuration_endpoint
response. - client
Credential Method This property is required. string - The Client Credential Method used.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- issuer
Endpoint This property is required. string - The endpoint that issued the Token as supplied by
openid_configuration_endpoint
response. - name
This property is required. string - The name which should be used for this Linux Function App.
- name
Claim Type This property is required. string - The name of the claim that contains the users name.
- openid
Configuration Endpoint This property is required. string - The endpoint used for OpenID Connect Discovery. For example
https://example.com/.well-known/openid-configuration
. - scopes
This property is required. string[] - The list of the scopes that are requested while authenticating.
- token
Endpoint This property is required. string - The endpoint used to request a Token as supplied by
openid_configuration_endpoint
response.
This property is required. str- The endpoint to make the Authorisation Request as supplied by
openid_configuration_endpoint
response. - certification_
uri This property is required. str - The endpoint that provides the keys necessary to validate the token as supplied by
openid_configuration_endpoint
response. - client_
credential_ method This property is required. str - The Client Credential Method used.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- issuer_
endpoint This property is required. str - The endpoint that issued the Token as supplied by
openid_configuration_endpoint
response. - name
This property is required. str - The name which should be used for this Linux Function App.
- name_
claim_ type This property is required. str - The name of the claim that contains the users name.
- openid_
configuration_ endpoint This property is required. str - The endpoint used for OpenID Connect Discovery. For example
https://example.com/.well-known/openid-configuration
. - scopes
This property is required. Sequence[str] - The list of the scopes that are requested while authenticating.
- token_
endpoint This property is required. str - The endpoint used to request a Token as supplied by
openid_configuration_endpoint
response.
This property is required. String- The endpoint to make the Authorisation Request as supplied by
openid_configuration_endpoint
response. - certification
Uri This property is required. String - The endpoint that provides the keys necessary to validate the token as supplied by
openid_configuration_endpoint
response. - client
Credential Method This property is required. String - The Client Credential Method used.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- issuer
Endpoint This property is required. String - The endpoint that issued the Token as supplied by
openid_configuration_endpoint
response. - name
This property is required. String - The name which should be used for this Linux Function App.
- name
Claim Type This property is required. String - The name of the claim that contains the users name.
- openid
Configuration Endpoint This property is required. String - The endpoint used for OpenID Connect Discovery. For example
https://example.com/.well-known/openid-configuration
. - scopes
This property is required. List<String> - The list of the scopes that are requested while authenticating.
- token
Endpoint This property is required. String - The endpoint used to request a Token as supplied by
openid_configuration_endpoint
response.
GetLinuxFunctionAppAuthSettingsV2FacebookV2
- App
Id This property is required. string - The App ID of the Facebook app used for login.
- App
Secret Setting Name This property is required. string - The app setting name that contains the
app_secret
value used for Facebook login. - Graph
Api Version This property is required. string - The version of the Facebook API to be used while logging in.
- Login
Scopes This property is required. List<string> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- App
Id This property is required. string - The App ID of the Facebook app used for login.
- App
Secret Setting Name This property is required. string - The app setting name that contains the
app_secret
value used for Facebook login. - Graph
Api Version This property is required. string - The version of the Facebook API to be used while logging in.
- Login
Scopes This property is required. []string - The list of Login scopes that are requested as part of Microsoft Account authentication.
- app
Id This property is required. String - The App ID of the Facebook app used for login.
- app
Secret Setting Name This property is required. String - The app setting name that contains the
app_secret
value used for Facebook login. - graph
Api Version This property is required. String - The version of the Facebook API to be used while logging in.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- app
Id This property is required. string - The App ID of the Facebook app used for login.
- app
Secret Setting Name This property is required. string - The app setting name that contains the
app_secret
value used for Facebook login. - graph
Api Version This property is required. string - The version of the Facebook API to be used while logging in.
- login
Scopes This property is required. string[] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- app_
id This property is required. str - The App ID of the Facebook app used for login.
- app_
secret_ setting_ name This property is required. str - The app setting name that contains the
app_secret
value used for Facebook login. - graph_
api_ version This property is required. str - The version of the Facebook API to be used while logging in.
- login_
scopes This property is required. Sequence[str] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- app
Id This property is required. String - The App ID of the Facebook app used for login.
- app
Secret Setting Name This property is required. String - The app setting name that contains the
app_secret
value used for Facebook login. - graph
Api Version This property is required. String - The version of the Facebook API to be used while logging in.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingsV2GithubV2
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. List<string> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. []string - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. string[] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login_
scopes This property is required. Sequence[str] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingsV2GoogleV2
- Allowed
Audiences This property is required. List<string> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. List<string> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- Allowed
Audiences This property is required. []string - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. []string - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed
Audiences This property is required. string[] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. string[] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed_
audiences This property is required. Sequence[str] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login_
scopes This property is required. Sequence[str] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingsV2Login
- Allowed
External Redirect Urls This property is required. List<string> - External URLs that can be redirected to as part of logging in or logging out of the app.
This property is required. string- The method by which cookies expire.
This property is required. string- The time after the request is made when the session cookie should expire.
- Logout
Endpoint This property is required. string - The endpoint to which logout requests are made.
- Nonce
Expiration Time This property is required. string - The time after the request is made when the nonce should expire.
- Preserve
Url Fragments For Logins This property is required. bool - Are the fragments from the request preserved after the login request is made.
- Token
Refresh Extension Time This property is required. double - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- Token
Store Enabled This property is required. bool - Is the Token Store configuration Enabled.
- Token
Store Path This property is required. string - The directory path in the App Filesystem in which the tokens are stored.
- Token
Store Sas Setting Name This property is required. string - The name of the app setting which contains the SAS URL of the blob storage containing the tokens.
- Validate
Nonce This property is required. bool - Is the nonce validated while completing the login flow.
- Allowed
External Redirect Urls This property is required. []string - External URLs that can be redirected to as part of logging in or logging out of the app.
This property is required. string- The method by which cookies expire.
This property is required. string- The time after the request is made when the session cookie should expire.
- Logout
Endpoint This property is required. string - The endpoint to which logout requests are made.
- Nonce
Expiration Time This property is required. string - The time after the request is made when the nonce should expire.
- Preserve
Url Fragments For Logins This property is required. bool - Are the fragments from the request preserved after the login request is made.
- Token
Refresh Extension Time This property is required. float64 - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- Token
Store Enabled This property is required. bool - Is the Token Store configuration Enabled.
- Token
Store Path This property is required. string - The directory path in the App Filesystem in which the tokens are stored.
- Token
Store Sas Setting Name This property is required. string - The name of the app setting which contains the SAS URL of the blob storage containing the tokens.
- Validate
Nonce This property is required. bool - Is the nonce validated while completing the login flow.
- allowed
External Redirect Urls This property is required. List<String> - External URLs that can be redirected to as part of logging in or logging out of the app.
This property is required. String- The method by which cookies expire.
This property is required. String- The time after the request is made when the session cookie should expire.
- logout
Endpoint This property is required. String - The endpoint to which logout requests are made.
- nonce
Expiration Time This property is required. String - The time after the request is made when the nonce should expire.
- preserve
Url Fragments For Logins This property is required. Boolean - Are the fragments from the request preserved after the login request is made.
- token
Refresh Extension Time This property is required. Double - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token
Store Enabled This property is required. Boolean - Is the Token Store configuration Enabled.
- token
Store Path This property is required. String - The directory path in the App Filesystem in which the tokens are stored.
- token
Store Sas Setting Name This property is required. String - The name of the app setting which contains the SAS URL of the blob storage containing the tokens.
- validate
Nonce This property is required. Boolean - Is the nonce validated while completing the login flow.
- allowed
External Redirect Urls This property is required. string[] - External URLs that can be redirected to as part of logging in or logging out of the app.
This property is required. string- The method by which cookies expire.
This property is required. string- The time after the request is made when the session cookie should expire.
- logout
Endpoint This property is required. string - The endpoint to which logout requests are made.
- nonce
Expiration Time This property is required. string - The time after the request is made when the nonce should expire.
- preserve
Url Fragments For Logins This property is required. boolean - Are the fragments from the request preserved after the login request is made.
- token
Refresh Extension Time This property is required. number - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token
Store Enabled This property is required. boolean - Is the Token Store configuration Enabled.
- token
Store Path This property is required. string - The directory path in the App Filesystem in which the tokens are stored.
- token
Store Sas Setting Name This property is required. string - The name of the app setting which contains the SAS URL of the blob storage containing the tokens.
- validate
Nonce This property is required. boolean - Is the nonce validated while completing the login flow.
- allowed_
external_ redirect_ urls This property is required. Sequence[str] - External URLs that can be redirected to as part of logging in or logging out of the app.
This property is required. str- The method by which cookies expire.
This property is required. str- The time after the request is made when the session cookie should expire.
- logout_
endpoint This property is required. str - The endpoint to which logout requests are made.
- nonce_
expiration_ time This property is required. str - The time after the request is made when the nonce should expire.
- preserve_
url_ fragments_ for_ logins This property is required. bool - Are the fragments from the request preserved after the login request is made.
- token_
refresh_ extension_ time This property is required. float - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token_
store_ enabled This property is required. bool - Is the Token Store configuration Enabled.
- token_
store_ path This property is required. str - The directory path in the App Filesystem in which the tokens are stored.
- token_
store_ sas_ setting_ name This property is required. str - The name of the app setting which contains the SAS URL of the blob storage containing the tokens.
- validate_
nonce This property is required. bool - Is the nonce validated while completing the login flow.
- allowed
External Redirect Urls This property is required. List<String> - External URLs that can be redirected to as part of logging in or logging out of the app.
This property is required. String- The method by which cookies expire.
This property is required. String- The time after the request is made when the session cookie should expire.
- logout
Endpoint This property is required. String - The endpoint to which logout requests are made.
- nonce
Expiration Time This property is required. String - The time after the request is made when the nonce should expire.
- preserve
Url Fragments For Logins This property is required. Boolean - Are the fragments from the request preserved after the login request is made.
- token
Refresh Extension Time This property is required. Number - The number of hours after session token expiration that a session token can be used to call the token refresh API.
- token
Store Enabled This property is required. Boolean - Is the Token Store configuration Enabled.
- token
Store Path This property is required. String - The directory path in the App Filesystem in which the tokens are stored.
- token
Store Sas Setting Name This property is required. String - The name of the app setting which contains the SAS URL of the blob storage containing the tokens.
- validate
Nonce This property is required. Boolean - Is the nonce validated while completing the login flow.
GetLinuxFunctionAppAuthSettingsV2MicrosoftV2
- Allowed
Audiences This property is required. List<string> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. List<string> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- Allowed
Audiences This property is required. []string - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- Client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- Client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- Login
Scopes This property is required. []string - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed
Audiences This property is required. string[] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. string - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. string - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. string[] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed_
audiences This property is required. Sequence[str] - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client_
id This property is required. str - The OAuth 2.0 client ID that was created for the app used for authentication.
- client_
secret_ setting_ name This property is required. str - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login_
scopes This property is required. Sequence[str] - The list of Login scopes that are requested as part of Microsoft Account authentication.
- allowed
Audiences This property is required. List<String> - The list of Allowed Audiences that are be requested as part of Microsoft Sign-In authentication.
- client
Id This property is required. String - The OAuth 2.0 client ID that was created for the app used for authentication.
- client
Secret Setting Name This property is required. String - The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
- login
Scopes This property is required. List<String> - The list of Login scopes that are requested as part of Microsoft Account authentication.
GetLinuxFunctionAppAuthSettingsV2TwitterV2
- Consumer
Key This property is required. string - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- Consumer
Secret Setting Name This property is required. string - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- Consumer
Key This property is required. string - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- Consumer
Secret Setting Name This property is required. string - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Key This property is required. String - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer
Secret Setting Name This property is required. String - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Key This property is required. string - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer
Secret Setting Name This property is required. string - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer_
key This property is required. str - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer_
secret_ setting_ name This property is required. str - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
- consumer
Key This property is required. String - The OAuth 1.0a consumer key of the Twitter application used for sign-in.
- consumer
Secret Setting Name This property is required. String - The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
GetLinuxFunctionAppBackup
- Enabled
This property is required. bool - Is this backup job enabled?
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Schedules
This property is required. List<GetLinux Function App Backup Schedule> - A
schedule
block as defined below. - Storage
Account Url This property is required. string - The SAS URL to the container.
- Enabled
This property is required. bool - Is this backup job enabled?
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Schedules
This property is required. []GetLinux Function App Backup Schedule - A
schedule
block as defined below. - Storage
Account Url This property is required. string - The SAS URL to the container.
- enabled
This property is required. Boolean - Is this backup job enabled?
- name
This property is required. String - The name which should be used for this Linux Function App.
- schedules
This property is required. List<GetLinux Function App Backup Schedule> - A
schedule
block as defined below. - storage
Account Url This property is required. String - The SAS URL to the container.
- enabled
This property is required. boolean - Is this backup job enabled?
- name
This property is required. string - The name which should be used for this Linux Function App.
- schedules
This property is required. GetLinux Function App Backup Schedule[] - A
schedule
block as defined below. - storage
Account Url This property is required. string - The SAS URL to the container.
- enabled
This property is required. bool - Is this backup job enabled?
- name
This property is required. str - The name which should be used for this Linux Function App.
- schedules
This property is required. Sequence[GetLinux Function App Backup Schedule] - A
schedule
block as defined below. - storage_
account_ url This property is required. str - The SAS URL to the container.
- enabled
This property is required. Boolean - Is this backup job enabled?
- name
This property is required. String - The name which should be used for this Linux Function App.
- schedules
This property is required. List<Property Map> - A
schedule
block as defined below. - storage
Account Url This property is required. String - The SAS URL to the container.
GetLinuxFunctionAppBackupSchedule
- Frequency
Interval This property is required. int - How often the backup is executed.
- Frequency
Unit This property is required. string - The unit of time for how often the backup takes place.
- Keep
At Least One Backup This property is required. bool - Does the service keep at least one backup, regardless of age of backup?
- Last
Execution Time This property is required. string - The time the backup was last attempted.
- Retention
Period Days This property is required. int - After how many days backups are deleted.
- Start
Time This property is required. string - When the schedule starts working in RFC-3339 format.
- Frequency
Interval This property is required. int - How often the backup is executed.
- Frequency
Unit This property is required. string - The unit of time for how often the backup takes place.
- Keep
At Least One Backup This property is required. bool - Does the service keep at least one backup, regardless of age of backup?
- Last
Execution Time This property is required. string - The time the backup was last attempted.
- Retention
Period Days This property is required. int - After how many days backups are deleted.
- Start
Time This property is required. string - When the schedule starts working in RFC-3339 format.
- frequency
Interval This property is required. Integer - How often the backup is executed.
- frequency
Unit This property is required. String - The unit of time for how often the backup takes place.
- keep
At Least One Backup This property is required. Boolean - Does the service keep at least one backup, regardless of age of backup?
- last
Execution Time This property is required. String - The time the backup was last attempted.
- retention
Period Days This property is required. Integer - After how many days backups are deleted.
- start
Time This property is required. String - When the schedule starts working in RFC-3339 format.
- frequency
Interval This property is required. number - How often the backup is executed.
- frequency
Unit This property is required. string - The unit of time for how often the backup takes place.
- keep
At Least One Backup This property is required. boolean - Does the service keep at least one backup, regardless of age of backup?
- last
Execution Time This property is required. string - The time the backup was last attempted.
- retention
Period Days This property is required. number - After how many days backups are deleted.
- start
Time This property is required. string - When the schedule starts working in RFC-3339 format.
- frequency_
interval This property is required. int - How often the backup is executed.
- frequency_
unit This property is required. str - The unit of time for how often the backup takes place.
- keep_
at_ least_ one_ backup This property is required. bool - Does the service keep at least one backup, regardless of age of backup?
- last_
execution_ time This property is required. str - The time the backup was last attempted.
- retention_
period_ days This property is required. int - After how many days backups are deleted.
- start_
time This property is required. str - When the schedule starts working in RFC-3339 format.
- frequency
Interval This property is required. Number - How often the backup is executed.
- frequency
Unit This property is required. String - The unit of time for how often the backup takes place.
- keep
At Least One Backup This property is required. Boolean - Does the service keep at least one backup, regardless of age of backup?
- last
Execution Time This property is required. String - The time the backup was last attempted.
- retention
Period Days This property is required. Number - After how many days backups are deleted.
- start
Time This property is required. String - When the schedule starts working in RFC-3339 format.
GetLinuxFunctionAppConnectionString
GetLinuxFunctionAppIdentity
- Identity
Ids This property is required. List<string> - The list of User Assigned Managed Identity IDs assigned to this Linux Function App.
- Principal
Id This property is required. string - The Principal ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- Tenant
Id This property is required. string - The Tenant ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- Type
This property is required. string - The type of Managed Service Identity that is configured on this Linux Function App.
- Identity
Ids This property is required. []string - The list of User Assigned Managed Identity IDs assigned to this Linux Function App.
- Principal
Id This property is required. string - The Principal ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- Tenant
Id This property is required. string - The Tenant ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- Type
This property is required. string - The type of Managed Service Identity that is configured on this Linux Function App.
- identity
Ids This property is required. List<String> - The list of User Assigned Managed Identity IDs assigned to this Linux Function App.
- principal
Id This property is required. String - The Principal ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- tenant
Id This property is required. String - The Tenant ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- type
This property is required. String - The type of Managed Service Identity that is configured on this Linux Function App.
- identity
Ids This property is required. string[] - The list of User Assigned Managed Identity IDs assigned to this Linux Function App.
- principal
Id This property is required. string - The Principal ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- tenant
Id This property is required. string - The Tenant ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- type
This property is required. string - The type of Managed Service Identity that is configured on this Linux Function App.
- identity_
ids This property is required. Sequence[str] - The list of User Assigned Managed Identity IDs assigned to this Linux Function App.
- principal_
id This property is required. str - The Principal ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- tenant_
id This property is required. str - The Tenant ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- type
This property is required. str - The type of Managed Service Identity that is configured on this Linux Function App.
- identity
Ids This property is required. List<String> - The list of User Assigned Managed Identity IDs assigned to this Linux Function App.
- principal
Id This property is required. String - The Principal ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- tenant
Id This property is required. String - The Tenant ID of the System Assigned Managed Service Identity that is configured on this Linux Function App.
- type
This property is required. String - The type of Managed Service Identity that is configured on this Linux Function App.
GetLinuxFunctionAppSiteConfig
- Always
On This property is required. bool - If this Linux Web App is Always On enabled.
- Api
Definition Url This property is required. string - The URL of the API definition that describes this Linux Function App.
- Api
Management Api Id This property is required. string - The ID of the API Management API for this Linux Function App.
- App
Command Line This property is required. string - The App command line that is launched.
- App
Scale Limit This property is required. int - The number of workers this function app can scale out to.
- App
Service Logs This property is required. List<GetLinux Function App Site Config App Service Log> - An
app_service_logs
block as defined above. - Application
Insights Connection String This property is required. string - The Connection String that links the Linux Function App to Application Insights.
- Application
Insights Key This property is required. string - The Instrumentation Key that connects the Linux Function App to Application Insights.
- Application
Stacks This property is required. List<GetLinux Function App Site Config Application Stack> - An
application_stack
block as defined above. - Container
Registry Managed Identity Client Id This property is required. string - The Client ID of the Managed Service Identity that is used for connections to the Azure Container Registry.
- Container
Registry Use Managed Identity This property is required. bool - Do connections for Azure Container Registry use Managed Identity?
- Cors
This property is required. List<GetLinux Function App Site Config Cor> - A
cors
block as defined above. - Default
Documents This property is required. List<string> - A list of Default Documents for the Linux Web App.
- Detailed
Error Logging Enabled This property is required. bool - Elastic
Instance Minimum This property is required. int - The number of minimum instances for this Linux Function App.
- Ftps
State This property is required. string - State of FTP / FTPS service for this function app.
- Health
Check Eviction Time In Min This property is required. int - The amount of time in minutes that a node can be unhealthy before being removed from the load balancer.
- Health
Check Path This property is required. string - The path that is checked for this function app health.
- Http2Enabled
This property is required. bool - Is the HTTP2 protocol enabled?
- Ip
Restriction Default Action This property is required. string - The Default action for traffic that does not match any
ip_restriction
rule. - Ip
Restrictions This property is required. List<GetLinux Function App Site Config Ip Restriction> - One or more
ip_restriction
blocks as defined above. - Linux
Fx Version This property is required. string - Load
Balancing Mode This property is required. string - The Site load balancing mode.
- Managed
Pipeline Mode This property is required. string - Managed pipeline mode.
- Minimum
Tls Version This property is required. string - The minimum version of TLS required for SSL requests.
- Pre
Warmed Instance Count This property is required. int - The number of pre-warmed instances for this function app.
- Remote
Debugging Enabled This property is required. bool - Is Remote Debugging enabled?
- Remote
Debugging Version This property is required. string - The Remote Debugging Version.
- Runtime
Scale Monitoring Enabled This property is required. bool - Is Scale Monitoring of the Functions Runtime enabled?
- Scm
Ip Restrictions This property is required. List<GetLinux Function App Site Config Scm Ip Restriction> - One or more
scm_ip_restriction
blocks as defined above. - Scm
Minimum Tls Version This property is required. string - The minimum version of TLS for SSL requests to the SCM site.
- Scm
Type This property is required. string - Scm
Use Main Ip Restriction This property is required. bool - Is the Linux Function App
ip_restriction
configuration used for the SCM also? - Use32Bit
Worker This property is required. bool - Does the Linux Web App use a 32-bit worker process?
- Vnet
Route All Enabled This property is required. bool - Are all outbound traffic to NAT Gateways, Network Security Groups and User Defined Routes applied?
- Websockets
Enabled This property is required. bool - Are Web Sockets enabled?
- Worker
Count This property is required. int - The number of Workers for this Linux Function App.
- Scm
Ip stringRestriction Default Action - The Default action for traffic that does not match any
scm_ip_restriction
rule.
- Always
On This property is required. bool - If this Linux Web App is Always On enabled.
- Api
Definition Url This property is required. string - The URL of the API definition that describes this Linux Function App.
- Api
Management Api Id This property is required. string - The ID of the API Management API for this Linux Function App.
- App
Command Line This property is required. string - The App command line that is launched.
- App
Scale Limit This property is required. int - The number of workers this function app can scale out to.
- App
Service Logs This property is required. []GetLinux Function App Site Config App Service Log - An
app_service_logs
block as defined above. - Application
Insights Connection String This property is required. string - The Connection String that links the Linux Function App to Application Insights.
- Application
Insights Key This property is required. string - The Instrumentation Key that connects the Linux Function App to Application Insights.
- Application
Stacks This property is required. []GetLinux Function App Site Config Application Stack - An
application_stack
block as defined above. - Container
Registry Managed Identity Client Id This property is required. string - The Client ID of the Managed Service Identity that is used for connections to the Azure Container Registry.
- Container
Registry Use Managed Identity This property is required. bool - Do connections for Azure Container Registry use Managed Identity?
- Cors
This property is required. []GetLinux Function App Site Config Cor - A
cors
block as defined above. - Default
Documents This property is required. []string - A list of Default Documents for the Linux Web App.
- Detailed
Error Logging Enabled This property is required. bool - Elastic
Instance Minimum This property is required. int - The number of minimum instances for this Linux Function App.
- Ftps
State This property is required. string - State of FTP / FTPS service for this function app.
- Health
Check Eviction Time In Min This property is required. int - The amount of time in minutes that a node can be unhealthy before being removed from the load balancer.
- Health
Check Path This property is required. string - The path that is checked for this function app health.
- Http2Enabled
This property is required. bool - Is the HTTP2 protocol enabled?
- Ip
Restriction Default Action This property is required. string - The Default action for traffic that does not match any
ip_restriction
rule. - Ip
Restrictions This property is required. []GetLinux Function App Site Config Ip Restriction - One or more
ip_restriction
blocks as defined above. - Linux
Fx Version This property is required. string - Load
Balancing Mode This property is required. string - The Site load balancing mode.
- Managed
Pipeline Mode This property is required. string - Managed pipeline mode.
- Minimum
Tls Version This property is required. string - The minimum version of TLS required for SSL requests.
- Pre
Warmed Instance Count This property is required. int - The number of pre-warmed instances for this function app.
- Remote
Debugging Enabled This property is required. bool - Is Remote Debugging enabled?
- Remote
Debugging Version This property is required. string - The Remote Debugging Version.
- Runtime
Scale Monitoring Enabled This property is required. bool - Is Scale Monitoring of the Functions Runtime enabled?
- Scm
Ip Restrictions This property is required. []GetLinux Function App Site Config Scm Ip Restriction - One or more
scm_ip_restriction
blocks as defined above. - Scm
Minimum Tls Version This property is required. string - The minimum version of TLS for SSL requests to the SCM site.
- Scm
Type This property is required. string - Scm
Use Main Ip Restriction This property is required. bool - Is the Linux Function App
ip_restriction
configuration used for the SCM also? - Use32Bit
Worker This property is required. bool - Does the Linux Web App use a 32-bit worker process?
- Vnet
Route All Enabled This property is required. bool - Are all outbound traffic to NAT Gateways, Network Security Groups and User Defined Routes applied?
- Websockets
Enabled This property is required. bool - Are Web Sockets enabled?
- Worker
Count This property is required. int - The number of Workers for this Linux Function App.
- Scm
Ip stringRestriction Default Action - The Default action for traffic that does not match any
scm_ip_restriction
rule.
- always
On This property is required. Boolean - If this Linux Web App is Always On enabled.
- api
Definition Url This property is required. String - The URL of the API definition that describes this Linux Function App.
- api
Management Api Id This property is required. String - The ID of the API Management API for this Linux Function App.
- app
Command Line This property is required. String - The App command line that is launched.
- app
Scale Limit This property is required. Integer - The number of workers this function app can scale out to.
- app
Service Logs This property is required. List<GetLinux Function App Site Config App Service Log> - An
app_service_logs
block as defined above. - application
Insights Connection String This property is required. String - The Connection String that links the Linux Function App to Application Insights.
- application
Insights Key This property is required. String - The Instrumentation Key that connects the Linux Function App to Application Insights.
- application
Stacks This property is required. List<GetLinux Function App Site Config Application Stack> - An
application_stack
block as defined above. - container
Registry Managed Identity Client Id This property is required. String - The Client ID of the Managed Service Identity that is used for connections to the Azure Container Registry.
- container
Registry Use Managed Identity This property is required. Boolean - Do connections for Azure Container Registry use Managed Identity?
- cors
This property is required. List<GetLinux Function App Site Config Cor> - A
cors
block as defined above. - default
Documents This property is required. List<String> - A list of Default Documents for the Linux Web App.
- detailed
Error Logging Enabled This property is required. Boolean - elastic
Instance Minimum This property is required. Integer - The number of minimum instances for this Linux Function App.
- ftps
State This property is required. String - State of FTP / FTPS service for this function app.
- health
Check Eviction Time In Min This property is required. Integer - The amount of time in minutes that a node can be unhealthy before being removed from the load balancer.
- health
Check Path This property is required. String - The path that is checked for this function app health.
- http2Enabled
This property is required. Boolean - Is the HTTP2 protocol enabled?
- ip
Restriction Default Action This property is required. String - The Default action for traffic that does not match any
ip_restriction
rule. - ip
Restrictions This property is required. List<GetLinux Function App Site Config Ip Restriction> - One or more
ip_restriction
blocks as defined above. - linux
Fx Version This property is required. String - load
Balancing Mode This property is required. String - The Site load balancing mode.
- managed
Pipeline Mode This property is required. String - Managed pipeline mode.
- minimum
Tls Version This property is required. String - The minimum version of TLS required for SSL requests.
- pre
Warmed Instance Count This property is required. Integer - The number of pre-warmed instances for this function app.
- remote
Debugging Enabled This property is required. Boolean - Is Remote Debugging enabled?
- remote
Debugging Version This property is required. String - The Remote Debugging Version.
- runtime
Scale Monitoring Enabled This property is required. Boolean - Is Scale Monitoring of the Functions Runtime enabled?
- scm
Ip Restrictions This property is required. List<GetLinux Function App Site Config Scm Ip Restriction> - One or more
scm_ip_restriction
blocks as defined above. - scm
Minimum Tls Version This property is required. String - The minimum version of TLS for SSL requests to the SCM site.
- scm
Type This property is required. String - scm
Use Main Ip Restriction This property is required. Boolean - Is the Linux Function App
ip_restriction
configuration used for the SCM also? - use32Bit
Worker This property is required. Boolean - Does the Linux Web App use a 32-bit worker process?
- vnet
Route All Enabled This property is required. Boolean - Are all outbound traffic to NAT Gateways, Network Security Groups and User Defined Routes applied?
- websockets
Enabled This property is required. Boolean - Are Web Sockets enabled?
- worker
Count This property is required. Integer - The number of Workers for this Linux Function App.
- scm
Ip StringRestriction Default Action - The Default action for traffic that does not match any
scm_ip_restriction
rule.
- always
On This property is required. boolean - If this Linux Web App is Always On enabled.
- api
Definition Url This property is required. string - The URL of the API definition that describes this Linux Function App.
- api
Management Api Id This property is required. string - The ID of the API Management API for this Linux Function App.
- app
Command Line This property is required. string - The App command line that is launched.
- app
Scale Limit This property is required. number - The number of workers this function app can scale out to.
- app
Service Logs This property is required. GetLinux Function App Site Config App Service Log[] - An
app_service_logs
block as defined above. - application
Insights Connection String This property is required. string - The Connection String that links the Linux Function App to Application Insights.
- application
Insights Key This property is required. string - The Instrumentation Key that connects the Linux Function App to Application Insights.
- application
Stacks This property is required. GetLinux Function App Site Config Application Stack[] - An
application_stack
block as defined above. - container
Registry Managed Identity Client Id This property is required. string - The Client ID of the Managed Service Identity that is used for connections to the Azure Container Registry.
- container
Registry Use Managed Identity This property is required. boolean - Do connections for Azure Container Registry use Managed Identity?
- cors
This property is required. GetLinux Function App Site Config Cor[] - A
cors
block as defined above. - default
Documents This property is required. string[] - A list of Default Documents for the Linux Web App.
- detailed
Error Logging Enabled This property is required. boolean - elastic
Instance Minimum This property is required. number - The number of minimum instances for this Linux Function App.
- ftps
State This property is required. string - State of FTP / FTPS service for this function app.
- health
Check Eviction Time In Min This property is required. number - The amount of time in minutes that a node can be unhealthy before being removed from the load balancer.
- health
Check Path This property is required. string - The path that is checked for this function app health.
- http2Enabled
This property is required. boolean - Is the HTTP2 protocol enabled?
- ip
Restriction Default Action This property is required. string - The Default action for traffic that does not match any
ip_restriction
rule. - ip
Restrictions This property is required. GetLinux Function App Site Config Ip Restriction[] - One or more
ip_restriction
blocks as defined above. - linux
Fx Version This property is required. string - load
Balancing Mode This property is required. string - The Site load balancing mode.
- managed
Pipeline Mode This property is required. string - Managed pipeline mode.
- minimum
Tls Version This property is required. string - The minimum version of TLS required for SSL requests.
- pre
Warmed Instance Count This property is required. number - The number of pre-warmed instances for this function app.
- remote
Debugging Enabled This property is required. boolean - Is Remote Debugging enabled?
- remote
Debugging Version This property is required. string - The Remote Debugging Version.
- runtime
Scale Monitoring Enabled This property is required. boolean - Is Scale Monitoring of the Functions Runtime enabled?
- scm
Ip Restrictions This property is required. GetLinux Function App Site Config Scm Ip Restriction[] - One or more
scm_ip_restriction
blocks as defined above. - scm
Minimum Tls Version This property is required. string - The minimum version of TLS for SSL requests to the SCM site.
- scm
Type This property is required. string - scm
Use Main Ip Restriction This property is required. boolean - Is the Linux Function App
ip_restriction
configuration used for the SCM also? - use32Bit
Worker This property is required. boolean - Does the Linux Web App use a 32-bit worker process?
- vnet
Route All Enabled This property is required. boolean - Are all outbound traffic to NAT Gateways, Network Security Groups and User Defined Routes applied?
- websockets
Enabled This property is required. boolean - Are Web Sockets enabled?
- worker
Count This property is required. number - The number of Workers for this Linux Function App.
- scm
Ip stringRestriction Default Action - The Default action for traffic that does not match any
scm_ip_restriction
rule.
- always_
on This property is required. bool - If this Linux Web App is Always On enabled.
- api_
definition_ url This property is required. str - The URL of the API definition that describes this Linux Function App.
- api_
management_ api_ id This property is required. str - The ID of the API Management API for this Linux Function App.
- app_
command_ line This property is required. str - The App command line that is launched.
- app_
scale_ limit This property is required. int - The number of workers this function app can scale out to.
- app_
service_ logs This property is required. Sequence[GetLinux Function App Site Config App Service Log] - An
app_service_logs
block as defined above. - application_
insights_ connection_ string This property is required. str - The Connection String that links the Linux Function App to Application Insights.
- application_
insights_ key This property is required. str - The Instrumentation Key that connects the Linux Function App to Application Insights.
- application_
stacks This property is required. Sequence[GetLinux Function App Site Config Application Stack] - An
application_stack
block as defined above. - container_
registry_ managed_ identity_ client_ id This property is required. str - The Client ID of the Managed Service Identity that is used for connections to the Azure Container Registry.
- container_
registry_ use_ managed_ identity This property is required. bool - Do connections for Azure Container Registry use Managed Identity?
- cors
This property is required. Sequence[GetLinux Function App Site Config Cor] - A
cors
block as defined above. - default_
documents This property is required. Sequence[str] - A list of Default Documents for the Linux Web App.
- detailed_
error_ logging_ enabled This property is required. bool - elastic_
instance_ minimum This property is required. int - The number of minimum instances for this Linux Function App.
- ftps_
state This property is required. str - State of FTP / FTPS service for this function app.
- health_
check_ eviction_ time_ in_ min This property is required. int - The amount of time in minutes that a node can be unhealthy before being removed from the load balancer.
- health_
check_ path This property is required. str - The path that is checked for this function app health.
- http2_
enabled This property is required. bool - Is the HTTP2 protocol enabled?
- ip_
restriction_ default_ action This property is required. str - The Default action for traffic that does not match any
ip_restriction
rule. - ip_
restrictions This property is required. Sequence[GetLinux Function App Site Config Ip Restriction] - One or more
ip_restriction
blocks as defined above. - linux_
fx_ version This property is required. str - load_
balancing_ mode This property is required. str - The Site load balancing mode.
- managed_
pipeline_ mode This property is required. str - Managed pipeline mode.
- minimum_
tls_ version This property is required. str - The minimum version of TLS required for SSL requests.
- pre_
warmed_ instance_ count This property is required. int - The number of pre-warmed instances for this function app.
- remote_
debugging_ enabled This property is required. bool - Is Remote Debugging enabled?
- remote_
debugging_ version This property is required. str - The Remote Debugging Version.
- runtime_
scale_ monitoring_ enabled This property is required. bool - Is Scale Monitoring of the Functions Runtime enabled?
- scm_
ip_ restrictions This property is required. Sequence[GetLinux Function App Site Config Scm Ip Restriction] - One or more
scm_ip_restriction
blocks as defined above. - scm_
minimum_ tls_ version This property is required. str - The minimum version of TLS for SSL requests to the SCM site.
- scm_
type This property is required. str - scm_
use_ main_ ip_ restriction This property is required. bool - Is the Linux Function App
ip_restriction
configuration used for the SCM also? - use32_
bit_ worker This property is required. bool - Does the Linux Web App use a 32-bit worker process?
- vnet_
route_ all_ enabled This property is required. bool - Are all outbound traffic to NAT Gateways, Network Security Groups and User Defined Routes applied?
- websockets_
enabled This property is required. bool - Are Web Sockets enabled?
- worker_
count This property is required. int - The number of Workers for this Linux Function App.
- scm_
ip_ strrestriction_ default_ action - The Default action for traffic that does not match any
scm_ip_restriction
rule.
- always
On This property is required. Boolean - If this Linux Web App is Always On enabled.
- api
Definition Url This property is required. String - The URL of the API definition that describes this Linux Function App.
- api
Management Api Id This property is required. String - The ID of the API Management API for this Linux Function App.
- app
Command Line This property is required. String - The App command line that is launched.
- app
Scale Limit This property is required. Number - The number of workers this function app can scale out to.
- app
Service Logs This property is required. List<Property Map> - An
app_service_logs
block as defined above. - application
Insights Connection String This property is required. String - The Connection String that links the Linux Function App to Application Insights.
- application
Insights Key This property is required. String - The Instrumentation Key that connects the Linux Function App to Application Insights.
- application
Stacks This property is required. List<Property Map> - An
application_stack
block as defined above. - container
Registry Managed Identity Client Id This property is required. String - The Client ID of the Managed Service Identity that is used for connections to the Azure Container Registry.
- container
Registry Use Managed Identity This property is required. Boolean - Do connections for Azure Container Registry use Managed Identity?
- cors
This property is required. List<Property Map> - A
cors
block as defined above. - default
Documents This property is required. List<String> - A list of Default Documents for the Linux Web App.
- detailed
Error Logging Enabled This property is required. Boolean - elastic
Instance Minimum This property is required. Number - The number of minimum instances for this Linux Function App.
- ftps
State This property is required. String - State of FTP / FTPS service for this function app.
- health
Check Eviction Time In Min This property is required. Number - The amount of time in minutes that a node can be unhealthy before being removed from the load balancer.
- health
Check Path This property is required. String - The path that is checked for this function app health.
- http2Enabled
This property is required. Boolean - Is the HTTP2 protocol enabled?
- ip
Restriction Default Action This property is required. String - The Default action for traffic that does not match any
ip_restriction
rule. - ip
Restrictions This property is required. List<Property Map> - One or more
ip_restriction
blocks as defined above. - linux
Fx Version This property is required. String - load
Balancing Mode This property is required. String - The Site load balancing mode.
- managed
Pipeline Mode This property is required. String - Managed pipeline mode.
- minimum
Tls Version This property is required. String - The minimum version of TLS required for SSL requests.
- pre
Warmed Instance Count This property is required. Number - The number of pre-warmed instances for this function app.
- remote
Debugging Enabled This property is required. Boolean - Is Remote Debugging enabled?
- remote
Debugging Version This property is required. String - The Remote Debugging Version.
- runtime
Scale Monitoring Enabled This property is required. Boolean - Is Scale Monitoring of the Functions Runtime enabled?
- scm
Ip Restrictions This property is required. List<Property Map> - One or more
scm_ip_restriction
blocks as defined above. - scm
Minimum Tls Version This property is required. String - The minimum version of TLS for SSL requests to the SCM site.
- scm
Type This property is required. String - scm
Use Main Ip Restriction This property is required. Boolean - Is the Linux Function App
ip_restriction
configuration used for the SCM also? - use32Bit
Worker This property is required. Boolean - Does the Linux Web App use a 32-bit worker process?
- vnet
Route All Enabled This property is required. Boolean - Are all outbound traffic to NAT Gateways, Network Security Groups and User Defined Routes applied?
- websockets
Enabled This property is required. Boolean - Are Web Sockets enabled?
- worker
Count This property is required. Number - The number of Workers for this Linux Function App.
- scm
Ip StringRestriction Default Action - The Default action for traffic that does not match any
scm_ip_restriction
rule.
GetLinuxFunctionAppSiteConfigAppServiceLog
- Disk
Quota Mb This property is required. int - The amount of disk space used for logs.
- Retention
Period Days This property is required. int - After how many days backups are deleted.
- Disk
Quota Mb This property is required. int - The amount of disk space used for logs.
- Retention
Period Days This property is required. int - After how many days backups are deleted.
- disk
Quota Mb This property is required. Integer - The amount of disk space used for logs.
- retention
Period Days This property is required. Integer - After how many days backups are deleted.
- disk
Quota Mb This property is required. number - The amount of disk space used for logs.
- retention
Period Days This property is required. number - After how many days backups are deleted.
- disk_
quota_ mb This property is required. int - The amount of disk space used for logs.
- retention_
period_ days This property is required. int - After how many days backups are deleted.
- disk
Quota Mb This property is required. Number - The amount of disk space used for logs.
- retention
Period Days This property is required. Number - After how many days backups are deleted.
GetLinuxFunctionAppSiteConfigApplicationStack
- Dockers
This property is required. List<GetLinux Function App Site Config Application Stack Docker> - One or more
docker
blocks as defined below. - Dotnet
Version This property is required. string - The version of .NET used.
- Java
Version This property is required. string - The Version of Java used.
- Node
Version This property is required. string - The version of Node used.
- Powershell
Core Version This property is required. string - The version of PowerShell Core used.
- Python
Version This property is required. string - The version of Python used.
- Use
Custom Runtime This property is required. bool - Does the Linux Function App use a custom runtime?
- Use
Dotnet Isolated Runtime This property is required. bool
- Dockers
This property is required. []GetLinux Function App Site Config Application Stack Docker - One or more
docker
blocks as defined below. - Dotnet
Version This property is required. string - The version of .NET used.
- Java
Version This property is required. string - The Version of Java used.
- Node
Version This property is required. string - The version of Node used.
- Powershell
Core Version This property is required. string - The version of PowerShell Core used.
- Python
Version This property is required. string - The version of Python used.
- Use
Custom Runtime This property is required. bool - Does the Linux Function App use a custom runtime?
- Use
Dotnet Isolated Runtime This property is required. bool
- dockers
This property is required. List<GetLinux Function App Site Config Application Stack Docker> - One or more
docker
blocks as defined below. - dotnet
Version This property is required. String - The version of .NET used.
- java
Version This property is required. String - The Version of Java used.
- node
Version This property is required. String - The version of Node used.
- powershell
Core Version This property is required. String - The version of PowerShell Core used.
- python
Version This property is required. String - The version of Python used.
- use
Custom Runtime This property is required. Boolean - Does the Linux Function App use a custom runtime?
- use
Dotnet Isolated Runtime This property is required. Boolean
- dockers
This property is required. GetLinux Function App Site Config Application Stack Docker[] - One or more
docker
blocks as defined below. - dotnet
Version This property is required. string - The version of .NET used.
- java
Version This property is required. string - The Version of Java used.
- node
Version This property is required. string - The version of Node used.
- powershell
Core Version This property is required. string - The version of PowerShell Core used.
- python
Version This property is required. string - The version of Python used.
- use
Custom Runtime This property is required. boolean - Does the Linux Function App use a custom runtime?
- use
Dotnet Isolated Runtime This property is required. boolean
- dockers
This property is required. Sequence[GetLinux Function App Site Config Application Stack Docker] - One or more
docker
blocks as defined below. - dotnet_
version This property is required. str - The version of .NET used.
- java_
version This property is required. str - The Version of Java used.
- node_
version This property is required. str - The version of Node used.
- powershell_
core_ version This property is required. str - The version of PowerShell Core used.
- python_
version This property is required. str - The version of Python used.
- use_
custom_ runtime This property is required. bool - Does the Linux Function App use a custom runtime?
- use_
dotnet_ isolated_ runtime This property is required. bool
- dockers
This property is required. List<Property Map> - One or more
docker
blocks as defined below. - dotnet
Version This property is required. String - The version of .NET used.
- java
Version This property is required. String - The Version of Java used.
- node
Version This property is required. String - The version of Node used.
- powershell
Core Version This property is required. String - The version of PowerShell Core used.
- python
Version This property is required. String - The version of Python used.
- use
Custom Runtime This property is required. Boolean - Does the Linux Function App use a custom runtime?
- use
Dotnet Isolated Runtime This property is required. Boolean
GetLinuxFunctionAppSiteConfigApplicationStackDocker
- Image
Name This property is required. string - The name of the Docker image used.
- Image
Tag This property is required. string - The image tag of the image used.
- Registry
Password This property is required. string - The password for the account to use to connect to the registry.
- Registry
Url This property is required. string - The URL of the docker registry.
- Registry
Username This property is required. string - The username used for connections to the registry.
- Image
Name This property is required. string - The name of the Docker image used.
- Image
Tag This property is required. string - The image tag of the image used.
- Registry
Password This property is required. string - The password for the account to use to connect to the registry.
- Registry
Url This property is required. string - The URL of the docker registry.
- Registry
Username This property is required. string - The username used for connections to the registry.
- image
Name This property is required. String - The name of the Docker image used.
- image
Tag This property is required. String - The image tag of the image used.
- registry
Password This property is required. String - The password for the account to use to connect to the registry.
- registry
Url This property is required. String - The URL of the docker registry.
- registry
Username This property is required. String - The username used for connections to the registry.
- image
Name This property is required. string - The name of the Docker image used.
- image
Tag This property is required. string - The image tag of the image used.
- registry
Password This property is required. string - The password for the account to use to connect to the registry.
- registry
Url This property is required. string - The URL of the docker registry.
- registry
Username This property is required. string - The username used for connections to the registry.
- image_
name This property is required. str - The name of the Docker image used.
- image_
tag This property is required. str - The image tag of the image used.
- registry_
password This property is required. str - The password for the account to use to connect to the registry.
- registry_
url This property is required. str - The URL of the docker registry.
- registry_
username This property is required. str - The username used for connections to the registry.
- image
Name This property is required. String - The name of the Docker image used.
- image
Tag This property is required. String - The image tag of the image used.
- registry
Password This property is required. String - The password for the account to use to connect to the registry.
- registry
Url This property is required. String - The URL of the docker registry.
- registry
Username This property is required. String - The username used for connections to the registry.
GetLinuxFunctionAppSiteConfigCor
- Allowed
Origins This property is required. List<string> - A list of origins that are allowed to make cross-origin calls.
- Support
Credentials This property is required. bool - Are credentials allowed in CORS requests?
- Allowed
Origins This property is required. []string - A list of origins that are allowed to make cross-origin calls.
- Support
Credentials This property is required. bool - Are credentials allowed in CORS requests?
- allowed
Origins This property is required. List<String> - A list of origins that are allowed to make cross-origin calls.
- support
Credentials This property is required. Boolean - Are credentials allowed in CORS requests?
- allowed
Origins This property is required. string[] - A list of origins that are allowed to make cross-origin calls.
- support
Credentials This property is required. boolean - Are credentials allowed in CORS requests?
- allowed_
origins This property is required. Sequence[str] - A list of origins that are allowed to make cross-origin calls.
- support_
credentials This property is required. bool - Are credentials allowed in CORS requests?
- allowed
Origins This property is required. List<String> - A list of origins that are allowed to make cross-origin calls.
- support
Credentials This property is required. Boolean - Are credentials allowed in CORS requests?
GetLinuxFunctionAppSiteConfigIpRestriction
- Action
This property is required. string - The action taken.
- Description
This property is required. string - The description of the ip restriction rule.
- Headers
This property is required. List<GetLinux Function App Site Config Ip Restriction Header> - A
headers
block as defined above. - Ip
Address This property is required. string - The CIDR notation of the IP or IP Range matched.
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Priority
This property is required. int - The priority value of this
ip_restriction
. - Service
Tag This property is required. string - The Service Tag used for this IP Restriction.
- Virtual
Network Subnet Id This property is required. string - The Virtual Network Subnet ID used for this IP Restriction.
- Action
This property is required. string - The action taken.
- Description
This property is required. string - The description of the ip restriction rule.
- Headers
This property is required. []GetLinux Function App Site Config Ip Restriction Header - A
headers
block as defined above. - Ip
Address This property is required. string - The CIDR notation of the IP or IP Range matched.
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Priority
This property is required. int - The priority value of this
ip_restriction
. - Service
Tag This property is required. string - The Service Tag used for this IP Restriction.
- Virtual
Network Subnet Id This property is required. string - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. String - The action taken.
- description
This property is required. String - The description of the ip restriction rule.
- headers
This property is required. List<GetLinux Function App Site Config Ip Restriction Header> - A
headers
block as defined above. - ip
Address This property is required. String - The CIDR notation of the IP or IP Range matched.
- name
This property is required. String - The name which should be used for this Linux Function App.
- priority
This property is required. Integer - The priority value of this
ip_restriction
. - service
Tag This property is required. String - The Service Tag used for this IP Restriction.
- virtual
Network Subnet Id This property is required. String - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. string - The action taken.
- description
This property is required. string - The description of the ip restriction rule.
- headers
This property is required. GetLinux Function App Site Config Ip Restriction Header[] - A
headers
block as defined above. - ip
Address This property is required. string - The CIDR notation of the IP or IP Range matched.
- name
This property is required. string - The name which should be used for this Linux Function App.
- priority
This property is required. number - The priority value of this
ip_restriction
. - service
Tag This property is required. string - The Service Tag used for this IP Restriction.
- virtual
Network Subnet Id This property is required. string - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. str - The action taken.
- description
This property is required. str - The description of the ip restriction rule.
- headers
This property is required. Sequence[GetLinux Function App Site Config Ip Restriction Header] - A
headers
block as defined above. - ip_
address This property is required. str - The CIDR notation of the IP or IP Range matched.
- name
This property is required. str - The name which should be used for this Linux Function App.
- priority
This property is required. int - The priority value of this
ip_restriction
. - service_
tag This property is required. str - The Service Tag used for this IP Restriction.
- virtual_
network_ subnet_ id This property is required. str - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. String - The action taken.
- description
This property is required. String - The description of the ip restriction rule.
- headers
This property is required. List<Property Map> - A
headers
block as defined above. - ip
Address This property is required. String - The CIDR notation of the IP or IP Range matched.
- name
This property is required. String - The name which should be used for this Linux Function App.
- priority
This property is required. Number - The priority value of this
ip_restriction
. - service
Tag This property is required. String - The Service Tag used for this IP Restriction.
- virtual
Network Subnet Id This property is required. String - The Virtual Network Subnet ID used for this IP Restriction.
GetLinuxFunctionAppSiteConfigIpRestrictionHeader
- XAzure
Fdids This property is required. List<string> - A list of Azure Front Door IDs.
- XFd
Health Probes This property is required. List<string> - Should a Front Door Health Probe be expected?
- XForwarded
Fors This property is required. List<string> - A list of addresses for which matching is applied.
- XForwarded
Hosts This property is required. List<string> - A list of Hosts for which matching is applied.
- XAzure
Fdids This property is required. []string - A list of Azure Front Door IDs.
- XFd
Health Probes This property is required. []string - Should a Front Door Health Probe be expected?
- XForwarded
Fors This property is required. []string - A list of addresses for which matching is applied.
- XForwarded
Hosts This property is required. []string - A list of Hosts for which matching is applied.
- x
Azure Fdids This property is required. List<String> - A list of Azure Front Door IDs.
- x
Fd Health Probes This property is required. List<String> - Should a Front Door Health Probe be expected?
- x
Forwarded Fors This property is required. List<String> - A list of addresses for which matching is applied.
- x
Forwarded Hosts This property is required. List<String> - A list of Hosts for which matching is applied.
- x
Azure Fdids This property is required. string[] - A list of Azure Front Door IDs.
- x
Fd Health Probes This property is required. string[] - Should a Front Door Health Probe be expected?
- x
Forwarded Fors This property is required. string[] - A list of addresses for which matching is applied.
- x
Forwarded Hosts This property is required. string[] - A list of Hosts for which matching is applied.
- x_
azure_ fdids This property is required. Sequence[str] - A list of Azure Front Door IDs.
- x_
fd_ health_ probes This property is required. Sequence[str] - Should a Front Door Health Probe be expected?
- x_
forwarded_ fors This property is required. Sequence[str] - A list of addresses for which matching is applied.
- x_
forwarded_ hosts This property is required. Sequence[str] - A list of Hosts for which matching is applied.
- x
Azure Fdids This property is required. List<String> - A list of Azure Front Door IDs.
- x
Fd Health Probes This property is required. List<String> - Should a Front Door Health Probe be expected?
- x
Forwarded Fors This property is required. List<String> - A list of addresses for which matching is applied.
- x
Forwarded Hosts This property is required. List<String> - A list of Hosts for which matching is applied.
GetLinuxFunctionAppSiteConfigScmIpRestriction
- Action
This property is required. string - The action taken.
- Description
This property is required. string - The description of the ip restriction rule.
- Headers
This property is required. List<GetLinux Function App Site Config Scm Ip Restriction Header> - A
headers
block as defined above. - Ip
Address This property is required. string - The CIDR notation of the IP or IP Range matched.
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Priority
This property is required. int - The priority value of this
ip_restriction
. - Service
Tag This property is required. string - The Service Tag used for this IP Restriction.
- Virtual
Network Subnet Id This property is required. string - The Virtual Network Subnet ID used for this IP Restriction.
- Action
This property is required. string - The action taken.
- Description
This property is required. string - The description of the ip restriction rule.
- Headers
This property is required. []GetLinux Function App Site Config Scm Ip Restriction Header - A
headers
block as defined above. - Ip
Address This property is required. string - The CIDR notation of the IP or IP Range matched.
- Name
This property is required. string - The name which should be used for this Linux Function App.
- Priority
This property is required. int - The priority value of this
ip_restriction
. - Service
Tag This property is required. string - The Service Tag used for this IP Restriction.
- Virtual
Network Subnet Id This property is required. string - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. String - The action taken.
- description
This property is required. String - The description of the ip restriction rule.
- headers
This property is required. List<GetLinux Function App Site Config Scm Ip Restriction Header> - A
headers
block as defined above. - ip
Address This property is required. String - The CIDR notation of the IP or IP Range matched.
- name
This property is required. String - The name which should be used for this Linux Function App.
- priority
This property is required. Integer - The priority value of this
ip_restriction
. - service
Tag This property is required. String - The Service Tag used for this IP Restriction.
- virtual
Network Subnet Id This property is required. String - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. string - The action taken.
- description
This property is required. string - The description of the ip restriction rule.
- headers
This property is required. GetLinux Function App Site Config Scm Ip Restriction Header[] - A
headers
block as defined above. - ip
Address This property is required. string - The CIDR notation of the IP or IP Range matched.
- name
This property is required. string - The name which should be used for this Linux Function App.
- priority
This property is required. number - The priority value of this
ip_restriction
. - service
Tag This property is required. string - The Service Tag used for this IP Restriction.
- virtual
Network Subnet Id This property is required. string - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. str - The action taken.
- description
This property is required. str - The description of the ip restriction rule.
- headers
This property is required. Sequence[GetLinux Function App Site Config Scm Ip Restriction Header] - A
headers
block as defined above. - ip_
address This property is required. str - The CIDR notation of the IP or IP Range matched.
- name
This property is required. str - The name which should be used for this Linux Function App.
- priority
This property is required. int - The priority value of this
ip_restriction
. - service_
tag This property is required. str - The Service Tag used for this IP Restriction.
- virtual_
network_ subnet_ id This property is required. str - The Virtual Network Subnet ID used for this IP Restriction.
- action
This property is required. String - The action taken.
- description
This property is required. String - The description of the ip restriction rule.
- headers
This property is required. List<Property Map> - A
headers
block as defined above. - ip
Address This property is required. String - The CIDR notation of the IP or IP Range matched.
- name
This property is required. String - The name which should be used for this Linux Function App.
- priority
This property is required. Number - The priority value of this
ip_restriction
. - service
Tag This property is required. String - The Service Tag used for this IP Restriction.
- virtual
Network Subnet Id This property is required. String - The Virtual Network Subnet ID used for this IP Restriction.
GetLinuxFunctionAppSiteConfigScmIpRestrictionHeader
- XAzure
Fdids This property is required. List<string> - A list of Azure Front Door IDs.
- XFd
Health Probes This property is required. List<string> - Should a Front Door Health Probe be expected?
- XForwarded
Fors This property is required. List<string> - A list of addresses for which matching is applied.
- XForwarded
Hosts This property is required. List<string> - A list of Hosts for which matching is applied.
- XAzure
Fdids This property is required. []string - A list of Azure Front Door IDs.
- XFd
Health Probes This property is required. []string - Should a Front Door Health Probe be expected?
- XForwarded
Fors This property is required. []string - A list of addresses for which matching is applied.
- XForwarded
Hosts This property is required. []string - A list of Hosts for which matching is applied.
- x
Azure Fdids This property is required. List<String> - A list of Azure Front Door IDs.
- x
Fd Health Probes This property is required. List<String> - Should a Front Door Health Probe be expected?
- x
Forwarded Fors This property is required. List<String> - A list of addresses for which matching is applied.
- x
Forwarded Hosts This property is required. List<String> - A list of Hosts for which matching is applied.
- x
Azure Fdids This property is required. string[] - A list of Azure Front Door IDs.
- x
Fd Health Probes This property is required. string[] - Should a Front Door Health Probe be expected?
- x
Forwarded Fors This property is required. string[] - A list of addresses for which matching is applied.
- x
Forwarded Hosts This property is required. string[] - A list of Hosts for which matching is applied.
- x_
azure_ fdids This property is required. Sequence[str] - A list of Azure Front Door IDs.
- x_
fd_ health_ probes This property is required. Sequence[str] - Should a Front Door Health Probe be expected?
- x_
forwarded_ fors This property is required. Sequence[str] - A list of addresses for which matching is applied.
- x_
forwarded_ hosts This property is required. Sequence[str] - A list of Hosts for which matching is applied.
- x
Azure Fdids This property is required. List<String> - A list of Azure Front Door IDs.
- x
Fd Health Probes This property is required. List<String> - Should a Front Door Health Probe be expected?
- x
Forwarded Fors This property is required. List<String> - A list of addresses for which matching is applied.
- x
Forwarded Hosts This property is required. List<String> - A list of Hosts for which matching is applied.
GetLinuxFunctionAppSiteCredential
GetLinuxFunctionAppStickySetting
- App
Setting Names This property is required. List<string> - A list of
app_setting
names that the Linux Function App will not swap between Slots when a swap operation is triggered. - Connection
String Names This property is required. List<string> - A list of
connection_string
names that the Linux Function App will not swap between Slots when a swap operation is triggered.
- App
Setting Names This property is required. []string - A list of
app_setting
names that the Linux Function App will not swap between Slots when a swap operation is triggered. - Connection
String Names This property is required. []string - A list of
connection_string
names that the Linux Function App will not swap between Slots when a swap operation is triggered.
- app
Setting Names This property is required. List<String> - A list of
app_setting
names that the Linux Function App will not swap between Slots when a swap operation is triggered. - connection
String Names This property is required. List<String> - A list of
connection_string
names that the Linux Function App will not swap between Slots when a swap operation is triggered.
- app
Setting Names This property is required. string[] - A list of
app_setting
names that the Linux Function App will not swap between Slots when a swap operation is triggered. - connection
String Names This property is required. string[] - A list of
connection_string
names that the Linux Function App will not swap between Slots when a swap operation is triggered.
- app_
setting_ names This property is required. Sequence[str] - A list of
app_setting
names that the Linux Function App will not swap between Slots when a swap operation is triggered. - connection_
string_ names This property is required. Sequence[str] - A list of
connection_string
names that the Linux Function App will not swap between Slots when a swap operation is triggered.
- app
Setting Names This property is required. List<String> - A list of
app_setting
names that the Linux Function App will not swap between Slots when a swap operation is triggered. - connection
String Names This property is required. List<String> - A list of
connection_string
names that the Linux Function App will not swap between Slots when a swap operation is triggered.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.