We recommend using Azure Native.
azure.operationalinsights.QueryPackQuery
Explore with Pulumi AI
Manages a Log Analytics Query Pack Query.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleQueryPack = new azure.loganalytics.QueryPack("example", {
name: "example-laqp",
resourceGroupName: example.name,
location: example.location,
});
const exampleQueryPackQuery = new azure.operationalinsights.QueryPackQuery("example", {
name: "19952bc3-0bf9-49eb-b713-6b80e7a41847",
queryPackId: exampleQueryPack.id,
body: `let newExceptionsTimeRange = 1d;
let timeRangeToCheckBefore = 7d;
exceptions
| where timestamp < ago(timeRangeToCheckBefore)
| summarize count() by problemId
| join kind= rightanti (
exceptions
| where timestamp >= ago(newExceptionsTimeRange)
| extend stack = tostring(details[0].rawStack)
| summarize count(), dcount(user_AuthenticatedId), min(timestamp), max(timestamp), any(stack) by problemId
) on problemId
| order by count_ desc
`,
displayName: "Exceptions - New in the last 24 hours",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_query_pack = azure.loganalytics.QueryPack("example",
name="example-laqp",
resource_group_name=example.name,
location=example.location)
example_query_pack_query = azure.operationalinsights.QueryPackQuery("example",
name="19952bc3-0bf9-49eb-b713-6b80e7a41847",
query_pack_id=example_query_pack.id,
body="""let newExceptionsTimeRange = 1d;
let timeRangeToCheckBefore = 7d;
exceptions
| where timestamp < ago(timeRangeToCheckBefore)
| summarize count() by problemId
| join kind= rightanti (
exceptions
| where timestamp >= ago(newExceptionsTimeRange)
| extend stack = tostring(details[0].rawStack)
| summarize count(), dcount(user_AuthenticatedId), min(timestamp), max(timestamp), any(stack) by problemId
) on problemId
| order by count_ desc
""",
display_name="Exceptions - New in the last 24 hours")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/loganalytics"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/operationalinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleQueryPack, err := loganalytics.NewQueryPack(ctx, "example", &loganalytics.QueryPackArgs{
Name: pulumi.String("example-laqp"),
ResourceGroupName: example.Name,
Location: example.Location,
})
if err != nil {
return err
}
_, err = operationalinsights.NewQueryPackQuery(ctx, "example", &operationalinsights.QueryPackQueryArgs{
Name: pulumi.String("19952bc3-0bf9-49eb-b713-6b80e7a41847"),
QueryPackId: exampleQueryPack.ID(),
Body: pulumi.String(`let newExceptionsTimeRange = 1d;
let timeRangeToCheckBefore = 7d;
exceptions
| where timestamp < ago(timeRangeToCheckBefore)
| summarize count() by problemId
| join kind= rightanti (
exceptions
| where timestamp >= ago(newExceptionsTimeRange)
| extend stack = tostring(details[0].rawStack)
| summarize count(), dcount(user_AuthenticatedId), min(timestamp), max(timestamp), any(stack) by problemId
) on problemId
| order by count_ desc
`),
DisplayName: pulumi.String("Exceptions - New in the last 24 hours"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleQueryPack = new Azure.LogAnalytics.QueryPack("example", new()
{
Name = "example-laqp",
ResourceGroupName = example.Name,
Location = example.Location,
});
var exampleQueryPackQuery = new Azure.OperationalInsights.QueryPackQuery("example", new()
{
Name = "19952bc3-0bf9-49eb-b713-6b80e7a41847",
QueryPackId = exampleQueryPack.Id,
Body = @"let newExceptionsTimeRange = 1d;
let timeRangeToCheckBefore = 7d;
exceptions
| where timestamp < ago(timeRangeToCheckBefore)
| summarize count() by problemId
| join kind= rightanti (
exceptions
| where timestamp >= ago(newExceptionsTimeRange)
| extend stack = tostring(details[0].rawStack)
| summarize count(), dcount(user_AuthenticatedId), min(timestamp), max(timestamp), any(stack) by problemId
) on problemId
| order by count_ desc
",
DisplayName = "Exceptions - New in the last 24 hours",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.loganalytics.QueryPack;
import com.pulumi.azure.loganalytics.QueryPackArgs;
import com.pulumi.azure.operationalinsights.QueryPackQuery;
import com.pulumi.azure.operationalinsights.QueryPackQueryArgs;
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) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleQueryPack = new QueryPack("exampleQueryPack", QueryPackArgs.builder()
.name("example-laqp")
.resourceGroupName(example.name())
.location(example.location())
.build());
var exampleQueryPackQuery = new QueryPackQuery("exampleQueryPackQuery", QueryPackQueryArgs.builder()
.name("19952bc3-0bf9-49eb-b713-6b80e7a41847")
.queryPackId(exampleQueryPack.id())
.body("""
let newExceptionsTimeRange = 1d;
let timeRangeToCheckBefore = 7d;
exceptions
| where timestamp < ago(timeRangeToCheckBefore)
| summarize count() by problemId
| join kind= rightanti (
exceptions
| where timestamp >= ago(newExceptionsTimeRange)
| extend stack = tostring(details[0].rawStack)
| summarize count(), dcount(user_AuthenticatedId), min(timestamp), max(timestamp), any(stack) by problemId
) on problemId
| order by count_ desc
""")
.displayName("Exceptions - New in the last 24 hours")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleQueryPack:
type: azure:loganalytics:QueryPack
name: example
properties:
name: example-laqp
resourceGroupName: ${example.name}
location: ${example.location}
exampleQueryPackQuery:
type: azure:operationalinsights:QueryPackQuery
name: example
properties:
name: 19952bc3-0bf9-49eb-b713-6b80e7a41847
queryPackId: ${exampleQueryPack.id}
body: "let newExceptionsTimeRange = 1d;\nlet timeRangeToCheckBefore = 7d;\nexceptions\n| where timestamp < ago(timeRangeToCheckBefore)\n| summarize count() by problemId\n| join kind= rightanti (\nexceptions\n| where timestamp >= ago(newExceptionsTimeRange)\n| extend stack = tostring(details[0].rawStack)\n| summarize count(), dcount(user_AuthenticatedId), min(timestamp), max(timestamp), any(stack) by problemId \n) on problemId \n| order by count_ desc\n"
displayName: Exceptions - New in the last 24 hours
Create QueryPackQuery Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QueryPackQuery(name: string, args: QueryPackQueryArgs, opts?: CustomResourceOptions);
@overload
def QueryPackQuery(resource_name: str,
args: QueryPackQueryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def QueryPackQuery(resource_name: str,
opts: Optional[ResourceOptions] = None,
body: Optional[str] = None,
display_name: Optional[str] = None,
query_pack_id: Optional[str] = None,
additional_settings_json: Optional[str] = None,
categories: Optional[Sequence[str]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
resource_types: Optional[Sequence[str]] = None,
solutions: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewQueryPackQuery(ctx *Context, name string, args QueryPackQueryArgs, opts ...ResourceOption) (*QueryPackQuery, error)
public QueryPackQuery(string name, QueryPackQueryArgs args, CustomResourceOptions? opts = null)
public QueryPackQuery(String name, QueryPackQueryArgs args)
public QueryPackQuery(String name, QueryPackQueryArgs args, CustomResourceOptions options)
type: azure:operationalinsights:QueryPackQuery
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args QueryPackQueryArgs
- 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 QueryPackQueryArgs
- 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 QueryPackQueryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QueryPackQueryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QueryPackQueryArgs
- 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 queryPackQueryResource = new Azure.OperationalInsights.QueryPackQuery("queryPackQueryResource", new()
{
Body = "string",
DisplayName = "string",
QueryPackId = "string",
AdditionalSettingsJson = "string",
Categories = new[]
{
"string",
},
Description = "string",
Name = "string",
ResourceTypes = new[]
{
"string",
},
Solutions = new[]
{
"string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := operationalinsights.NewQueryPackQuery(ctx, "queryPackQueryResource", &operationalinsights.QueryPackQueryArgs{
Body: pulumi.String("string"),
DisplayName: pulumi.String("string"),
QueryPackId: pulumi.String("string"),
AdditionalSettingsJson: pulumi.String("string"),
Categories: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
ResourceTypes: pulumi.StringArray{
pulumi.String("string"),
},
Solutions: pulumi.StringArray{
pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var queryPackQueryResource = new QueryPackQuery("queryPackQueryResource", QueryPackQueryArgs.builder()
.body("string")
.displayName("string")
.queryPackId("string")
.additionalSettingsJson("string")
.categories("string")
.description("string")
.name("string")
.resourceTypes("string")
.solutions("string")
.tags(Map.of("string", "string"))
.build());
query_pack_query_resource = azure.operationalinsights.QueryPackQuery("queryPackQueryResource",
body="string",
display_name="string",
query_pack_id="string",
additional_settings_json="string",
categories=["string"],
description="string",
name="string",
resource_types=["string"],
solutions=["string"],
tags={
"string": "string",
})
const queryPackQueryResource = new azure.operationalinsights.QueryPackQuery("queryPackQueryResource", {
body: "string",
displayName: "string",
queryPackId: "string",
additionalSettingsJson: "string",
categories: ["string"],
description: "string",
name: "string",
resourceTypes: ["string"],
solutions: ["string"],
tags: {
string: "string",
},
});
type: azure:operationalinsights:QueryPackQuery
properties:
additionalSettingsJson: string
body: string
categories:
- string
description: string
displayName: string
name: string
queryPackId: string
resourceTypes:
- string
solutions:
- string
tags:
string: string
QueryPackQuery Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The QueryPackQuery resource accepts the following input properties:
- Body string
- The body of the Log Analytics Query Pack Query.
- Display
Name string - The unique display name for the query within the Log Analytics Query Pack.
- Query
Pack stringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- Additional
Settings stringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- Categories List<string>
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - Description string
- The description of the Log Analytics Query Pack Query.
- Name string
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- Resource
Types List<string> - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - Solutions List<string>
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Dictionary<string, string>
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- Body string
- The body of the Log Analytics Query Pack Query.
- Display
Name string - The unique display name for the query within the Log Analytics Query Pack.
- Query
Pack stringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- Additional
Settings stringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- Categories []string
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - Description string
- The description of the Log Analytics Query Pack Query.
- Name string
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- Resource
Types []string - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - Solutions []string
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - map[string]string
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- body String
- The body of the Log Analytics Query Pack Query.
- display
Name String - The unique display name for the query within the Log Analytics Query Pack.
- query
Pack StringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- additional
Settings StringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- categories List<String>
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description String
- The description of the Log Analytics Query Pack Query.
- name String
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- resource
Types List<String> - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions List<String>
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Map<String,String>
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- body string
- The body of the Log Analytics Query Pack Query.
- display
Name string - The unique display name for the query within the Log Analytics Query Pack.
- query
Pack stringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- additional
Settings stringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- categories string[]
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description string
- The description of the Log Analytics Query Pack Query.
- name string
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- resource
Types string[] - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions string[]
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - {[key: string]: string}
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- body str
- The body of the Log Analytics Query Pack Query.
- display_
name str - The unique display name for the query within the Log Analytics Query Pack.
- query_
pack_ strid - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- additional_
settings_ strjson - The additional properties that can be set for the Log Analytics Query Pack Query.
- categories Sequence[str]
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description str
- The description of the Log Analytics Query Pack Query.
- name str
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- resource_
types Sequence[str] - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions Sequence[str]
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Mapping[str, str]
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- body String
- The body of the Log Analytics Query Pack Query.
- display
Name String - The unique display name for the query within the Log Analytics Query Pack.
- query
Pack StringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- additional
Settings StringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- categories List<String>
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description String
- The description of the Log Analytics Query Pack Query.
- name String
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- resource
Types List<String> - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions List<String>
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Map<String>
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
Outputs
All input properties are implicitly available as output properties. Additionally, the QueryPackQuery resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing QueryPackQuery Resource
Get an existing QueryPackQuery resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: QueryPackQueryState, opts?: CustomResourceOptions): QueryPackQuery
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_settings_json: Optional[str] = None,
body: Optional[str] = None,
categories: Optional[Sequence[str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
name: Optional[str] = None,
query_pack_id: Optional[str] = None,
resource_types: Optional[Sequence[str]] = None,
solutions: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None) -> QueryPackQuery
func GetQueryPackQuery(ctx *Context, name string, id IDInput, state *QueryPackQueryState, opts ...ResourceOption) (*QueryPackQuery, error)
public static QueryPackQuery Get(string name, Input<string> id, QueryPackQueryState? state, CustomResourceOptions? opts = null)
public static QueryPackQuery get(String name, Output<String> id, QueryPackQueryState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Additional
Settings stringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- Body string
- The body of the Log Analytics Query Pack Query.
- Categories List<string>
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - Description string
- The description of the Log Analytics Query Pack Query.
- Display
Name string - The unique display name for the query within the Log Analytics Query Pack.
- Name string
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- Query
Pack stringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- Resource
Types List<string> - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - Solutions List<string>
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Dictionary<string, string>
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- Additional
Settings stringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- Body string
- The body of the Log Analytics Query Pack Query.
- Categories []string
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - Description string
- The description of the Log Analytics Query Pack Query.
- Display
Name string - The unique display name for the query within the Log Analytics Query Pack.
- Name string
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- Query
Pack stringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- Resource
Types []string - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - Solutions []string
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - map[string]string
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- additional
Settings StringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- body String
- The body of the Log Analytics Query Pack Query.
- categories List<String>
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description String
- The description of the Log Analytics Query Pack Query.
- display
Name String - The unique display name for the query within the Log Analytics Query Pack.
- name String
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- query
Pack StringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- resource
Types List<String> - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions List<String>
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Map<String,String>
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- additional
Settings stringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- body string
- The body of the Log Analytics Query Pack Query.
- categories string[]
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description string
- The description of the Log Analytics Query Pack Query.
- display
Name string - The unique display name for the query within the Log Analytics Query Pack.
- name string
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- query
Pack stringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- resource
Types string[] - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions string[]
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - {[key: string]: string}
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- additional_
settings_ strjson - The additional properties that can be set for the Log Analytics Query Pack Query.
- body str
- The body of the Log Analytics Query Pack Query.
- categories Sequence[str]
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description str
- The description of the Log Analytics Query Pack Query.
- display_
name str - The unique display name for the query within the Log Analytics Query Pack.
- name str
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- query_
pack_ strid - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- resource_
types Sequence[str] - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions Sequence[str]
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Mapping[str, str]
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
- additional
Settings StringJson - The additional properties that can be set for the Log Analytics Query Pack Query.
- body String
- The body of the Log Analytics Query Pack Query.
- categories List<String>
- A list of the related categories for the function. Possible values are
applications
,audit
,container
,databases
,desktopanalytics
,management
,monitor
,network
,resources
,security
,virtualmachines
,windowsvirtualdesktop
andworkloads
. - description String
- The description of the Log Analytics Query Pack Query.
- display
Name String - The unique display name for the query within the Log Analytics Query Pack.
- name String
- An unique UUID/GUID which identifies this Log Analytics Query Pack Query - one will be generated if not specified. Changing this forces a new resource to be created.
- query
Pack StringId - The ID of the Log Analytics Query Pack. Changing this forces a new resource to be created.
- resource
Types List<String> - A list of the related resource types for the function. Possible values are
default
,microsoft.aad/domainservices
,microsoft.aadiam/tenants
,microsoft.agfoodplatform/farmbeats
,microsoft.analysisservices/servers
,microsoft.apimanagement/service
,microsoft.appconfiguration/configurationstores
,microsoft.appplatform/spring
,microsoft.attestation/attestationproviders
,microsoft.authorization/tenants
,microsoft.automation/automationaccounts
,microsoft.autonomousdevelopmentplatform/accounts
,microsoft.azurestackhci/virtualmachines
,microsoft.batch/batchaccounts
,microsoft.blockchain/blockchainmembers
,microsoft.botservice/botservices
,microsoft.cache/redis
,microsoft.cdn/profiles
,microsoft.cognitiveservices/accounts
,microsoft.communication/communicationservices
,microsoft.compute/virtualmachines
,microsoft.compute/virtualmachinescalesets
,microsoft.connectedcache/cachenodes
,microsoft.connectedvehicle/platformaccounts
,microsoft.conenctedvmwarevsphere/virtualmachines
,microsoft.containerregistry/registries
,microsoft.containerservice/managedclusters
,microsoft.d365customerinsights/instances
,microsoft.dashboard/grafana
,microsoft.databricks/workspaces
,microsoft.datacollaboration/workspaces
,microsoft.datafactory/factories
,microsoft.datalakeanalytics/accounts
,microsoft.datalakestore/accounts
,microsoft.datashare/accounts
,microsoft.dbformariadb/servers
,microsoft.dbformysql/servers
,microsoft.dbforpostgresql/flexibleservers
,microsoft.dbforpostgresql/servers
,microsoft.dbforpostgresql/serversv2
,microsoft.digitaltwins/digitaltwinsinstances
,microsoft.documentdb/cassandraclusters
,microsoft.documentdb/databaseaccounts
,microsoft.desktopvirtualization/applicationgroups
,microsoft.desktopvirtualization/hostpools
,microsoft.desktopvirtualization/workspaces
,microsoft.devices/iothubs
,microsoft.devices/provisioningservices
,microsoft.dynamics/fraudprotection/purchase
,microsoft.eventgrid/domains
,microsoft.eventgrid/topics
,microsoft.eventgrid/partnernamespaces
,microsoft.eventgrid/partnertopics
,microsoft.eventgrid/systemtopics
,microsoft.eventhub/namespaces
,microsoft.experimentation/experimentworkspaces
,microsoft.hdinsight/clusters
,microsoft.healthcareapis/services
,microsoft.informationprotection/datasecuritymanagement
,microsoft.intune/operations
,microsoft.insights/autoscalesettings
,microsoft.insights/components
,microsoft.insights/workloadmonitoring
,microsoft.keyvault/vaults
,microsoft.kubernetes/connectedclusters
,microsoft.kusto/clusters
,microsoft.loadtestservice/loadtests
,microsoft.logic/workflows
,microsoft.machinelearningservices/workspaces
,microsoft.media/mediaservices
,microsoft.netapp/netappaccounts/capacitypools
,microsoft.network/applicationgateways
,microsoft.network/azurefirewalls
,microsoft.network/bastionhosts
,microsoft.network/expressroutecircuits
,microsoft.network/frontdoors
,microsoft.network/loadbalancers
,microsoft.network/networkinterfaces
,microsoft.network/networksecuritygroups
,microsoft.network/networksecurityperimeters
,microsoft.network/networkwatchers/connectionmonitors
,microsoft.network/networkwatchers/trafficanalytics
,microsoft.network/publicipaddresses
,microsoft.network/trafficmanagerprofiles
,microsoft.network/virtualnetworks
,microsoft.network/virtualnetworkgateways
,microsoft.network/vpngateways
,microsoft.networkfunction/azuretrafficcollectors
,microsoft.openenergyplatform/energyservices
,microsoft.openlogisticsplatform/workspaces
,microsoft.operationalinsights/workspaces
,microsoft.powerbi/tenants
,microsoft.powerbi/tenants/workspaces
,microsoft.powerbidedicated/capacities
,microsoft.purview/accounts
,microsoft.recoveryservices/vaults
,microsoft.resources/azureactivity
,microsoft.scvmm/virtualmachines
,microsoft.search/searchservices
,microsoft.security/antimalwaresettings
,microsoft.securityinsights/amazon
,microsoft.securityinsights/anomalies
,microsoft.securityinsights/cef
,microsoft.securityinsights/datacollection
,microsoft.securityinsights/dnsnormalized
,microsoft.securityinsights/mda
,microsoft.securityinsights/mde
,microsoft.securityinsights/mdi
,microsoft.securityinsights/mdo
,microsoft.securityinsights/networksessionnormalized
,microsoft.securityinsights/office365
,microsoft.securityinsights/purview
,microsoft.securityinsights/securityinsights
,microsoft.securityinsights/securityinsights/mcas
,microsoft.securityinsights/tvm
,microsoft.securityinsights/watchlists
,microsoft.servicebus/namespaces
,microsoft.servicefabric/clusters
,microsoft.signalrservice/signalr
,microsoft.signalrservice/webpubsub
,microsoft.sql/managedinstances
,microsoft.sql/servers
,microsoft.sql/servers/databases
,microsoft.storage/storageaccounts
,microsoft.storagecache/caches
,microsoft.streamanalytics/streamingjobs
,microsoft.synapse/workspaces
,microsoft.timeseriesinsights/environments
,microsoft.videoindexer/accounts
,microsoft.web/sites
,microsoft.workloadmonitor/monitors
,resourcegroup
andsubscription
. - solutions List<String>
- A list of the related Log Analytics solutions for the function. Possible values are
AADDomainServices
,ADAssessment
,ADAssessmentPlus
,ADReplication
,ADSecurityAssessment
,AlertManagement
,AntiMalware
,ApplicationInsights
,AzureAssessment
,AzureSecurityOfThings
,AzureSentinelDSRE
,AzureSentinelPrivatePreview
,BehaviorAnalyticsInsights
,ChangeTracking
,CompatibilityAssessment
,ContainerInsights
,Containers
,CustomizedWindowsEventsFiltering
,DeviceHealthProd
,DnsAnalytics
,ExchangeAssessment
,ExchangeOnlineAssessment
,IISAssessmentPlus
,InfrastructureInsights
,InternalWindowsEvent
,LogManagement
,Microsoft365Analytics
,NetworkMonitoring
,SCCMAssessmentPlus
,SCOMAssessment
,SCOMAssessmentPlus
,Security
,SecurityCenter
,SecurityCenterFree
,SecurityInsights
,ServiceMap
,SfBAssessment
,SfBOnlineAssessment
,SharePointOnlineAssessment
,SPAssessment
,SQLAdvancedThreatProtection
,SQLAssessment
,SQLAssessmentPlus
,SQLDataClassification
,SQLThreatDetection
,SQLVulnerabilityAssessment
,SurfaceHub
,Updates
,VMInsights
,WEFInternalUat
,WEF_10x
,WEF_10xDSRE
,WaaSUpdateInsights
,WinLog
,WindowsClientAssessmentPlus
,WindowsEventForwarding
,WindowsFirewall
,WindowsServerAssessment
,WireData
andWireData2
. - Map<String>
- A mapping of tags which should be assigned to the Log Analytics Query Pack Query.
Import
Log Analytics Query Pack Queries can be imported using the resource id
, e.g.
$ pulumi import azure:operationalinsights/queryPackQuery:QueryPackQuery example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.OperationalInsights/queryPacks/queryPack1/queries/15b49e87-8555-4d92-8a7b-2014b469a9df
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.