Skip to main content

mde_onboardings

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

Overview

Namemde_onboardings
TypeResource
Idazure.security.mde_onboardings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectProperties of the MDE configuration or data parameter needed to onboard the machine to MDE
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdapi-versionThe configuration or data needed to onboard the machine to MDE
getselectsubscriptionIdapi-versionThe default configuration or data needed to onboard the machine to MDE

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
subscriptionIdstringAzure subscription ID
api-versionstringAPI version for the operation

SELECT examples

The configuration or data needed to onboard the machine to MDE

SELECT
id,
name,
properties,
systemData,
type
FROM azure.security.mde_onboardings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;