Skip to main content

query_packs_without_names

Creates, updates, deletes, gets or lists a query_packs_without_names resource.

Overview

Namequery_packs_without_names
TypeResource
Idazure.log_analytics.query_packs_without_names

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTresourceGroupName, subscriptionId, data__propertiesCreates a Log Analytics QueryPack. Note: You cannot specify a different value for InstrumentationKey nor AppId in the Put operation.

INSERT example

Use the following StackQL query and manifest file to create a new query_packs_without_names resource.

/*+ create */
INSERT INTO azure.log_analytics.query_packs_without_names (
resourceGroupName,
subscriptionId,
data__properties,
properties,
location,
tags
)
SELECT
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}'
;