GradientEdge CDK Utils
    Preparing search index...

    Properties for creating an individual function within a Function App

    interface FunctionProps {
        config?: any;
        configHref?: Input<string>;
        configJson?: any;
        enabled?: boolean;
        files?: Input<{ [key: string]: Input<string> }>;
        functionAppId: string;
        functionName?: Input<string>;
        href?: Input<string>;
        invokeUrlTemplate?: Input<string>;
        isDisabled?: Input<boolean>;
        kind?: Input<string>;
        language?: string;
        name: string;
        resourceGroupName: Input<string>;
        scriptHref?: Input<string>;
        scriptRootPathHref?: Input<string>;
        secretsFileHref?: Input<string>;
        testData?: string;
        testDataHref?: Input<string>;
    }

    Hierarchy

    • WebAppFunctionArgs
      • FunctionProps
    Index

    Properties

    config?: any

    Config information.

    configHref?: Input<string>

    Config URI.

    configJson?: any

    Function configuration JSON (bindings, etc.)

    enabled?: boolean

    Whether the function is enabled

    files?: Input<{ [key: string]: Input<string> }>

    File list.

    functionAppId: string

    The resource ID of the parent function app

    functionName?: Input<string>

    Function name.

    href?: Input<string>

    Function URI.

    invokeUrlTemplate?: Input<string>

    The invocation URL

    isDisabled?: Input<boolean>

    Gets or sets a value indicating whether the function is disabled

    kind?: Input<string>

    Kind of resource.

    language?: string

    Programming language of the function

    name: string

    Function name

    resourceGroupName: Input<string>

    Name of the resource group to which the resource belongs.

    scriptHref?: Input<string>

    Script URI.

    scriptRootPathHref?: Input<string>

    Script root path URI.

    secretsFileHref?: Input<string>

    Secrets file URI.

    testData?: string

    Test data for the function

    testDataHref?: Input<string>

    Test data URI.