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
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
onboardingPackageLinuxstring (byte)The onboarding package used to onboard Linux machines to MDE, coded in base64. This can also be used for onboarding using the dedicated VM Extension.
onboardingPackageWindowsstring (byte)The onboarding package used to onboard Windows machines to MDE, coded in base64. This can also be used for onboarding using the dedicated VM Extension.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
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
getselectsubscription_idThe default configuration or data needed to onboard the machine to MDE.
list_rawexecsubscription_idThe 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
subscription_idstring

SELECT examples

The default configuration or data needed to onboard the machine to MDE.

SELECT
id,
name,
onboardingPackageLinux,
onboardingPackageWindows,
systemData,
type
FROM azure.security.mde_onboardings
WHERE subscription_id = '{{ subscription_id }}' -- required
;

Lifecycle Methods

The configuration or data needed to onboard the machine to MDE.

EXEC azure.security.mde_onboardings.list_raw 
@subscription_id='{{ subscription_id }}' --required
;