GradientEdge CDK Utils
    Preparing search index...

    Properties for creating an Application Insights workbook

    interface WorkbookProps {
        category: Input<string>;
        description?: Input<string>;
        displayName: Input<string>;
        identity?: Input<WorkbookResourceIdentityArgs>;
        kind?: Input<string>;
        location?: Input<string>;
        resourceGroupName: Input<string>;
        resourceName?: Input<string>;
        serializedData: Input<string>;
        slug: string;
        sourceId?: Input<string>;
        storageUri?: Input<string>;
        tags?: Input<{ [key: string]: Input<string> }>;
        templateId: string;
        variables: Record<string, any>;
        version?: Input<string>;
    }

    Hierarchy

    • WorkbookArgs
      • WorkbookProps
    Index

    Properties

    category: Input<string>

    Workbook category, as defined by the user at creation time.

    description?: Input<string>

    The description of the workbook.

    displayName: Input<string>

    The user-defined name (display name) of the workbook.

    identity?: Input<WorkbookResourceIdentityArgs>

    Identity used for BYOS

    kind?: Input<string>

    The kind of workbook. Only valid value is shared.

    location?: Input<string>

    The geo-location where the resource lives

    resourceGroupName: Input<string>

    The name of the resource group. The name is case insensitive.

    resourceName?: Input<string>

    The name of the workbook resource. The value must be an UUID.

    serializedData: Input<string>

    Configuration of this particular workbook. Configuration data is a string containing valid JSON

    slug: string

    Short slug identifier used as the workbook output filename

    sourceId?: Input<string>

    ResourceId for a source resource.

    storageUri?: Input<string>

    The resourceId to the storage account when bring your own storage is used

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

    Resource tags.

    templateId: string

    Template identifier used to locate the YAML workbook template

    variables: Record<string, any>

    Variables to substitute into the workbook template

    version?: Input<string>

    Workbook schema version format, like 'Notebook/1.0', which should match the workbook in serializedData