published on Thursday, Aug 13, 2026 by Pulumi
published on Thursday, Aug 13, 2026 by Pulumi
An Application Insights workbook template definition.
Uses Azure REST API version 2020-11-20.
Other available API versions: 2019-10-17-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native applicationinsights [ApiVersion]. See the version guide for details.
Example Usage
WorkbookTemplateAdd
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workbookTemplate = new AzureNative.ApplicationInsights.WorkbookTemplate("workbookTemplate", new()
{
Author = "Contoso",
Galleries = new[]
{
new AzureNative.ApplicationInsights.Inputs.WorkbookTemplateGalleryArgs
{
Category = "Failures",
Name = "Simple Template",
Order = 100,
ResourceType = "microsoft.insights/components",
Type = "tsg",
},
},
Location = "west us",
Priority = 1,
ResourceGroupName = "my-resource-group",
ResourceName = "testtemplate2",
TemplateData = new Dictionary<string, object?>
{
["$schema"] = "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
["items"] = new[]
{
new Dictionary<string, object?>
{
["content"] = new Dictionary<string, object?>
{
["json"] = @"## New workbook
---
Welcome to your new workbook. This area will display text formatted as markdown.
We've included a basic analytics query to get you started. Use the `Edit` button below each section to configure it or add more sections.",
},
["name"] = "text - 2",
["type"] = 1,
},
new Dictionary<string, object?>
{
["content"] = new Dictionary<string, object?>
{
["exportToExcelOptions"] = "visible",
["query"] = @"union withsource=TableName *
| summarize Count=count() by TableName
| render barchart",
["queryType"] = 0,
["resourceType"] = "microsoft.operationalinsights/workspaces",
["size"] = 1,
["version"] = "KqlItem/1.0",
},
["name"] = "query - 2",
["type"] = 3,
},
},
["styleSettings"] = new Dictionary<string, object?>
{
},
["version"] = "Notebook/1.0",
},
});
});
package main
import (
applicationinsights "github.com/pulumi/pulumi-azure-native-sdk/applicationinsights/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := applicationinsights.NewWorkbookTemplate(ctx, "workbookTemplate", &applicationinsights.WorkbookTemplateArgs{
Author: pulumi.String("Contoso"),
Galleries: applicationinsights.WorkbookTemplateGalleryArray{
&applicationinsights.WorkbookTemplateGalleryArgs{
Category: pulumi.String("Failures"),
Name: pulumi.String("Simple Template"),
Order: pulumi.Int(100),
ResourceType: pulumi.String("microsoft.insights/components"),
Type: pulumi.String("tsg"),
},
},
Location: pulumi.String("west us"),
Priority: pulumi.Int(1),
ResourceGroupName: pulumi.String("my-resource-group"),
ResourceName: pulumi.String("testtemplate2"),
TemplateData: pulumi.Any(map[string]interface{}{
"$schema": "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
"items": []interface{}{
map[string]interface{}{
"content": map[string]interface{}{
"json": "## New workbook\n---\n\nWelcome to your new workbook. This area will display text formatted as markdown.\n\n\nWe've included a basic analytics query to get you started. Use the `Edit` button below each section to configure it or add more sections.",
},
"name": "text - 2",
"type": 1,
},
map[string]interface{}{
"content": map[string]interface{}{
"exportToExcelOptions": "visible",
"query": "union withsource=TableName *\n| summarize Count=count() by TableName\n| render barchart",
"queryType": 0,
"resourceType": "microsoft.operationalinsights/workspaces",
"size": 1,
"version": "KqlItem/1.0",
},
"name": "query - 2",
"type": 3,
},
},
"styleSettings": map[string]interface{}{},
"version": "Notebook/1.0",
}),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_applicationinsights_workbooktemplate" "workbookTemplate" {
author = "Contoso"
galleries {
category = "Failures"
name = "Simple Template"
order = 100
resource_type = "microsoft.insights/components"
type = "tsg"
}
location = "west us"
priority = 1
resource_group_name = "my-resource-group"
resource_name = "testtemplate2"
template_data = {
"$schema" = "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json"
"items" = [{
"content" = {
"json" = "## New workbook\n---\n\nWelcome to your new workbook. This area will display text formatted as markdown.\n\n\nWe've included a basic analytics query to get you started. Use the `Edit` button below each section to configure it or add more sections."
}
"name" = "text - 2"
"type" = 1
}, {
"content" = {
"exportToExcelOptions" = "visible"
"query" = "union withsource=TableName *\n| summarize Count=count() by TableName\n| render barchart"
"queryType" = 0
"resourceType" = "microsoft.operationalinsights/workspaces"
"size" = 1
"version" = "KqlItem/1.0"
}
"name" = "query - 2"
"type" = 3
}]
"styleSettings" = {}
"version" = "Notebook/1.0"
}
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.applicationinsights.WorkbookTemplate;
import com.pulumi.azurenative.applicationinsights.WorkbookTemplateArgs;
import com.pulumi.azurenative.applicationinsights.inputs.WorkbookTemplateGalleryArgs;
import java.util.ArrayList;
import java.util.Arrays;
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) {
var workbookTemplate = new WorkbookTemplate("workbookTemplate", WorkbookTemplateArgs.builder()
.author("Contoso")
.galleries(WorkbookTemplateGalleryArgs.builder()
.category("Failures")
.name("Simple Template")
.order(100)
.resourceType("microsoft.insights/components")
.type("tsg")
.build())
.location("west us")
.priority(1)
.resourceGroupName("my-resource-group")
.resourceName("testtemplate2")
.templateData(Map.ofEntries(
Map.entry("$schema", "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json"),
Map.entry("items", Arrays.asList(
Map.ofEntries(
Map.entry("content", Map.of("json", """
## New workbook
---
Welcome to your new workbook. This area will display text formatted as markdown.
We've included a basic analytics query to get you started. Use the `Edit` button below each section to configure it or add more sections. """)),
Map.entry("name", "text - 2"),
Map.entry("type", 1)
),
Map.ofEntries(
Map.entry("content", Map.ofEntries(
Map.entry("exportToExcelOptions", "visible"),
Map.entry("query", """
union withsource=TableName *
| summarize Count=count() by TableName
| render barchart """),
Map.entry("queryType", 0),
Map.entry("resourceType", "microsoft.operationalinsights/workspaces"),
Map.entry("size", 1),
Map.entry("version", "KqlItem/1.0")
)),
Map.entry("name", "query - 2"),
Map.entry("type", 3)
))),
Map.entry("styleSettings", Map.ofEntries(
)),
Map.entry("version", "Notebook/1.0")
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workbookTemplate = new azure_native.applicationinsights.WorkbookTemplate("workbookTemplate", {
author: "Contoso",
galleries: [{
category: "Failures",
name: "Simple Template",
order: 100,
resourceType: "microsoft.insights/components",
type: "tsg",
}],
location: "west us",
priority: 1,
resourceGroupName: "my-resource-group",
resourceName: "testtemplate2",
templateData: {
$schema: "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
items: [
{
content: {
json: `## New workbook
---
Welcome to your new workbook. This area will display text formatted as markdown.
We've included a basic analytics query to get you started. Use the \`Edit\` button below each section to configure it or add more sections.`,
},
name: "text - 2",
type: 1,
},
{
content: {
exportToExcelOptions: "visible",
query: `union withsource=TableName *
| summarize Count=count() by TableName
| render barchart`,
queryType: 0,
resourceType: "microsoft.operationalinsights/workspaces",
size: 1,
version: "KqlItem/1.0",
},
name: "query - 2",
type: 3,
},
],
styleSettings: {},
version: "Notebook/1.0",
},
});
import pulumi
import pulumi_azure_native as azure_native
workbook_template = azure_native.applicationinsights.WorkbookTemplate("workbookTemplate",
author="Contoso",
galleries=[{
"category": "Failures",
"name": "Simple Template",
"order": 100,
"resource_type": "microsoft.insights/components",
"type": "tsg",
}],
location="west us",
priority=1,
resource_group_name="my-resource-group",
resource_name_="testtemplate2",
template_data={
"$schema": "https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json",
"items": [
{
"content": {
"json": """## New workbook
---
Welcome to your new workbook. This area will display text formatted as markdown.
We've included a basic analytics query to get you started. Use the `Edit` button below each section to configure it or add more sections.""",
},
"name": "text - 2",
"type": 1,
},
{
"content": {
"exportToExcelOptions": "visible",
"query": """union withsource=TableName *
| summarize Count=count() by TableName
| render barchart""",
"queryType": 0,
"resourceType": "microsoft.operationalinsights/workspaces",
"size": 1,
"version": "KqlItem/1.0",
},
"name": "query - 2",
"type": 3,
},
],
"styleSettings": {},
"version": "Notebook/1.0",
})
resources:
workbookTemplate:
type: azure-native:applicationinsights:WorkbookTemplate
properties:
author: Contoso
galleries:
- category: Failures
name: Simple Template
order: 100
resourceType: microsoft.insights/components
type: tsg
location: west us
priority: 1
resourceGroupName: my-resource-group
resourceName: testtemplate2
templateData:
$schema: https://github.com/Microsoft/Application-Insights-Workbooks/blob/master/schema/workbook.json
items:
- content:
json: |-
## New workbook
---
Welcome to your new workbook. This area will display text formatted as markdown.
We've included a basic analytics query to get you started. Use the `Edit` button below each section to configure it or add more sections.
name: text - 2
type: 1
- content:
exportToExcelOptions: visible
query: |-
union withsource=TableName *
| summarize Count=count() by TableName
| render barchart
queryType: 0
resourceType: microsoft.operationalinsights/workspaces
size: 1
version: KqlItem/1.0
name: query - 2
type: 3
styleSettings: {}
version: Notebook/1.0
Create WorkbookTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkbookTemplate(name: string, args: WorkbookTemplateArgs, opts?: CustomResourceOptions);@overload
def WorkbookTemplate(resource_name: str,
args: WorkbookTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkbookTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
galleries: Optional[Sequence[WorkbookTemplateGalleryArgs]] = None,
resource_group_name: Optional[str] = None,
template_data: Optional[Any] = None,
author: Optional[str] = None,
localized: Optional[Mapping[str, Sequence[WorkbookTemplateLocalizedGalleryArgs]]] = None,
location: Optional[str] = None,
priority: Optional[int] = None,
resource_name_: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewWorkbookTemplate(ctx *Context, name string, args WorkbookTemplateArgs, opts ...ResourceOption) (*WorkbookTemplate, error)public WorkbookTemplate(string name, WorkbookTemplateArgs args, CustomResourceOptions? opts = null)
public WorkbookTemplate(String name, WorkbookTemplateArgs args)
public WorkbookTemplate(String name, WorkbookTemplateArgs args, CustomResourceOptions options)
type: azure-native:applicationinsights:WorkbookTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_applicationinsights_workbook_template" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args WorkbookTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkbookTemplateArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkbookTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkbookTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkbookTemplateArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workbookTemplateResource = new AzureNative.ApplicationInsights.WorkbookTemplate("workbookTemplateResource", new()
{
Galleries = new[]
{
new AzureNative.ApplicationInsights.Inputs.WorkbookTemplateGalleryArgs
{
Category = "string",
Name = "string",
Order = 0,
ResourceType = "string",
Type = "string",
},
},
ResourceGroupName = "string",
TemplateData = "any",
Author = "string",
Localized =
{
{ "string", new[]
{
new AzureNative.ApplicationInsights.Inputs.WorkbookTemplateLocalizedGalleryArgs
{
Galleries = new[]
{
new AzureNative.ApplicationInsights.Inputs.WorkbookTemplateGalleryArgs
{
Category = "string",
Name = "string",
Order = 0,
ResourceType = "string",
Type = "string",
},
},
TemplateData = "any",
},
} },
},
Location = "string",
Priority = 0,
ResourceName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := applicationinsights.NewWorkbookTemplate(ctx, "workbookTemplateResource", &applicationinsights.WorkbookTemplateArgs{
Galleries: applicationinsights.WorkbookTemplateGalleryArray{
&applicationinsights.WorkbookTemplateGalleryArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Order: pulumi.Int(0),
ResourceType: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
ResourceGroupName: pulumi.String("string"),
TemplateData: pulumi.Any("any"),
Author: pulumi.String("string"),
Localized: applicationinsights.WorkbookTemplateLocalizedGalleryArrayMap{
"string": applicationinsights.WorkbookTemplateLocalizedGalleryArray{
&applicationinsights.WorkbookTemplateLocalizedGalleryArgs{
Galleries: applicationinsights.WorkbookTemplateGalleryArray{
&applicationinsights.WorkbookTemplateGalleryArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Order: pulumi.Int(0),
ResourceType: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
TemplateData: pulumi.Any("any"),
},
},
},
Location: pulumi.String("string"),
Priority: pulumi.Int(0),
ResourceName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "azure-native_applicationinsights_workbook_template" "workbookTemplateResource" {
lifecycle {
create_before_destroy = true
}
galleries {
category = "string"
name = "string"
order = 0
resource_type = "string"
type = "string"
}
resource_group_name = "string"
template_data = "any"
author = "string"
localized = {
"string" = [{
galleries = [{
category = "string"
name = "string"
order = 0
resource_type = "string"
type = "string"
}]
template_data = "any"
}]
}
location = "string"
priority = 0
resource_name = "string"
tags = {
"string" = "string"
}
}
var workbookTemplateResource = new WorkbookTemplate("workbookTemplateResource", WorkbookTemplateArgs.builder()
.galleries(WorkbookTemplateGalleryArgs.builder()
.category("string")
.name("string")
.order(0)
.resourceType("string")
.type("string")
.build())
.resourceGroupName("string")
.templateData("any")
.author("string")
.localized(Map.of("string", Arrays.asList(WorkbookTemplateLocalizedGalleryArgs.builder()
.galleries(WorkbookTemplateGalleryArgs.builder()
.category("string")
.name("string")
.order(0)
.resourceType("string")
.type("string")
.build())
.templateData("any")
.build())))
.location("string")
.priority(0)
.resourceName("string")
.tags(Map.of("string", "string"))
.build());
workbook_template_resource = azure_native.applicationinsights.WorkbookTemplate("workbookTemplateResource",
galleries=[{
"category": "string",
"name": "string",
"order": 0,
"resource_type": "string",
"type": "string",
}],
resource_group_name="string",
template_data="any",
author="string",
localized={
"string": [{
"galleries": [{
"category": "string",
"name": "string",
"order": 0,
"resource_type": "string",
"type": "string",
}],
"template_data": "any",
}],
},
location="string",
priority=0,
resource_name_="string",
tags={
"string": "string",
})
const workbookTemplateResource = new azure_native.applicationinsights.WorkbookTemplate("workbookTemplateResource", {
galleries: [{
category: "string",
name: "string",
order: 0,
resourceType: "string",
type: "string",
}],
resourceGroupName: "string",
templateData: "any",
author: "string",
localized: {
string: [{
galleries: [{
category: "string",
name: "string",
order: 0,
resourceType: "string",
type: "string",
}],
templateData: "any",
}],
},
location: "string",
priority: 0,
resourceName: "string",
tags: {
string: "string",
},
});
type: azure-native:applicationinsights:WorkbookTemplate
properties:
author: string
galleries:
- category: string
name: string
order: 0
resourceType: string
type: string
localized:
string:
- galleries:
- category: string
name: string
order: 0
resourceType: string
type: string
templateData: any
location: string
priority: 0
resourceGroupName: string
resourceName: string
tags:
string: string
templateData: any
WorkbookTemplate Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkbookTemplate resource accepts the following input properties:
- Galleries
List<Pulumi.
Azure Native. Application Insights. Inputs. Workbook Template Gallery> - Workbook galleries supported by the template.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Template
Data object - Valid JSON object containing workbook template payload.
- string
- Information about the author of the workbook template.
- Localized
Dictionary<string, Immutable
Array<Pulumi. Azure Native. Application Insights. Inputs. Workbook Template Localized Gallery Args>> - Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- Location string
- The geo-location where the resource lives
- Priority int
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- Resource
Name string - The name of the Application Insights component resource.
- Dictionary<string, string>
- Resource tags.
- Galleries
[]Workbook
Template Gallery Args - Workbook galleries supported by the template.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Template
Data interface{} - Valid JSON object containing workbook template payload.
- string
- Information about the author of the workbook template.
- Localized
map[string][]Workbook
Template Localized Gallery Args - Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- Location string
- The geo-location where the resource lives
- Priority int
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- Resource
Name string - The name of the Application Insights component resource.
- map[string]string
- Resource tags.
- galleries list(object)
- Workbook galleries supported by the template.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- template_
data any - Valid JSON object containing workbook template payload.
- string
- Information about the author of the workbook template.
- localized map(list(object))
- Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- location string
- The geo-location where the resource lives
- priority number
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- resource_
name string - The name of the Application Insights component resource.
- map(string)
- Resource tags.
- galleries
List<Workbook
Template Gallery> - Workbook galleries supported by the template.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- template
Data Object - Valid JSON object containing workbook template payload.
- String
- Information about the author of the workbook template.
- localized
Map<String,List<Workbook
Template Localized Gallery Args>> - Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- location String
- The geo-location where the resource lives
- priority Integer
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- resource
Name String - The name of the Application Insights component resource.
- Map<String,String>
- Resource tags.
- galleries
Workbook
Template Gallery[] - Workbook galleries supported by the template.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- template
Data any - Valid JSON object containing workbook template payload.
- string
- Information about the author of the workbook template.
- localized
{[key: string]: Workbook
Template Localized Gallery Args[]} - Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- location string
- The geo-location where the resource lives
- priority number
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- resource
Name string - The name of the Application Insights component resource.
- {[key: string]: string}
- Resource tags.
- galleries
Sequence[Workbook
Template Gallery Args] - Workbook galleries supported by the template.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- template_
data Any - Valid JSON object containing workbook template payload.
- str
- Information about the author of the workbook template.
- localized
Mapping[str, Sequence[Workbook
Template Localized Gallery Args]] - Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- location str
- The geo-location where the resource lives
- priority int
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- resource_
name str - The name of the Application Insights component resource.
- Mapping[str, str]
- Resource tags.
- galleries List<Property Map>
- Workbook galleries supported by the template.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- template
Data Any - Valid JSON object containing workbook template payload.
- String
- Information about the author of the workbook template.
- localized Map<List<Property Map>>
- Key value pair of localized gallery. Each key is the locale code of languages supported by the Azure portal.
- location String
- The geo-location where the resource lives
- priority Number
- Priority of the template. Determines which template to open when a workbook gallery is opened in viewer mode.
- resource
Name String - The name of the Application Insights component resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkbookTemplate resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Application Insights. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ stringversion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at string - The timestamp of resource creation (UTC).
- created_
by string - The identity that created the resource.
- created_
by_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
WorkbookTemplateGallery, WorkbookTemplateGalleryArgs
Gallery information for a workbook template.- Category string
- Category for the gallery.
- Name string
- Name of the workbook template in the gallery.
- Order int
- Order of the template within the gallery.
- Resource
Type string - Azure resource type supported by the gallery.
- Type string
- Type of workbook supported by the workbook template.
- Category string
- Category for the gallery.
- Name string
- Name of the workbook template in the gallery.
- Order int
- Order of the template within the gallery.
- Resource
Type string - Azure resource type supported by the gallery.
- Type string
- Type of workbook supported by the workbook template.
- category string
- Category for the gallery.
- name string
- Name of the workbook template in the gallery.
- order number
- Order of the template within the gallery.
- resource_
type string - Azure resource type supported by the gallery.
- type string
- Type of workbook supported by the workbook template.
- category String
- Category for the gallery.
- name String
- Name of the workbook template in the gallery.
- order Integer
- Order of the template within the gallery.
- resource
Type String - Azure resource type supported by the gallery.
- type String
- Type of workbook supported by the workbook template.
- category string
- Category for the gallery.
- name string
- Name of the workbook template in the gallery.
- order number
- Order of the template within the gallery.
- resource
Type string - Azure resource type supported by the gallery.
- type string
- Type of workbook supported by the workbook template.
- category str
- Category for the gallery.
- name str
- Name of the workbook template in the gallery.
- order int
- Order of the template within the gallery.
- resource_
type str - Azure resource type supported by the gallery.
- type str
- Type of workbook supported by the workbook template.
- category String
- Category for the gallery.
- name String
- Name of the workbook template in the gallery.
- order Number
- Order of the template within the gallery.
- resource
Type String - Azure resource type supported by the gallery.
- type String
- Type of workbook supported by the workbook template.
WorkbookTemplateGalleryResponse, WorkbookTemplateGalleryResponseArgs
Gallery information for a workbook template.- Category string
- Category for the gallery.
- Name string
- Name of the workbook template in the gallery.
- Order int
- Order of the template within the gallery.
- Resource
Type string - Azure resource type supported by the gallery.
- Type string
- Type of workbook supported by the workbook template.
- Category string
- Category for the gallery.
- Name string
- Name of the workbook template in the gallery.
- Order int
- Order of the template within the gallery.
- Resource
Type string - Azure resource type supported by the gallery.
- Type string
- Type of workbook supported by the workbook template.
- category string
- Category for the gallery.
- name string
- Name of the workbook template in the gallery.
- order number
- Order of the template within the gallery.
- resource_
type string - Azure resource type supported by the gallery.
- type string
- Type of workbook supported by the workbook template.
- category String
- Category for the gallery.
- name String
- Name of the workbook template in the gallery.
- order Integer
- Order of the template within the gallery.
- resource
Type String - Azure resource type supported by the gallery.
- type String
- Type of workbook supported by the workbook template.
- category string
- Category for the gallery.
- name string
- Name of the workbook template in the gallery.
- order number
- Order of the template within the gallery.
- resource
Type string - Azure resource type supported by the gallery.
- type string
- Type of workbook supported by the workbook template.
- category str
- Category for the gallery.
- name str
- Name of the workbook template in the gallery.
- order int
- Order of the template within the gallery.
- resource_
type str - Azure resource type supported by the gallery.
- type str
- Type of workbook supported by the workbook template.
- category String
- Category for the gallery.
- name String
- Name of the workbook template in the gallery.
- order Number
- Order of the template within the gallery.
- resource
Type String - Azure resource type supported by the gallery.
- type String
- Type of workbook supported by the workbook template.
WorkbookTemplateLocalizedGallery, WorkbookTemplateLocalizedGalleryArgs
Localized template data and gallery information.- Galleries
List<Pulumi.
Azure Native. Application Insights. Inputs. Workbook Template Gallery> - Workbook galleries supported by the template.
- Template
Data object - Valid JSON object containing workbook template payload.
- Galleries
[]Workbook
Template Gallery - Workbook galleries supported by the template.
- Template
Data interface{} - Valid JSON object containing workbook template payload.
- galleries list(object)
- Workbook galleries supported by the template.
- template_
data any - Valid JSON object containing workbook template payload.
- galleries
List<Workbook
Template Gallery> - Workbook galleries supported by the template.
- template
Data Object - Valid JSON object containing workbook template payload.
- galleries
Workbook
Template Gallery[] - Workbook galleries supported by the template.
- template
Data any - Valid JSON object containing workbook template payload.
- galleries
Sequence[Workbook
Template Gallery] - Workbook galleries supported by the template.
- template_
data Any - Valid JSON object containing workbook template payload.
- galleries List<Property Map>
- Workbook galleries supported by the template.
- template
Data Any - Valid JSON object containing workbook template payload.
WorkbookTemplateLocalizedGalleryResponse, WorkbookTemplateLocalizedGalleryResponseArgs
Localized template data and gallery information.- Galleries
List<Pulumi.
Azure Native. Application Insights. Inputs. Workbook Template Gallery Response> - Workbook galleries supported by the template.
- Template
Data object - Valid JSON object containing workbook template payload.
- Galleries
[]Workbook
Template Gallery Response - Workbook galleries supported by the template.
- Template
Data interface{} - Valid JSON object containing workbook template payload.
- galleries list(object)
- Workbook galleries supported by the template.
- template_
data any - Valid JSON object containing workbook template payload.
- galleries
List<Workbook
Template Gallery Response> - Workbook galleries supported by the template.
- template
Data Object - Valid JSON object containing workbook template payload.
- galleries
Workbook
Template Gallery Response[] - Workbook galleries supported by the template.
- template
Data any - Valid JSON object containing workbook template payload.
- galleries
Sequence[Workbook
Template Gallery Response] - Workbook galleries supported by the template.
- template_
data Any - Valid JSON object containing workbook template payload.
- galleries List<Property Map>
- Workbook galleries supported by the template.
- template
Data Any - Valid JSON object containing workbook template payload.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:applicationinsights:WorkbookTemplate testtemplate2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/workbooktemplates/{resourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Thursday, Aug 13, 2026 by Pulumi