mde_onboardings
Creates, updates, deletes, gets or lists a mde_onboardings resource.
Overview
| Name | mde_onboardings |
| Type | Resource |
| Id | azure.security.mde_onboardings |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
onboardingPackageLinux | string (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. |
onboardingPackageWindows | string (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. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscription_id | The default configuration or data needed to onboard the machine to MDE. | |
list_raw | exec | subscription_id | The 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- get
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
- list_raw
The configuration or data needed to onboard the machine to MDE.
EXEC azure.security.mde_onboardings.list_raw
@subscription_id='{{ subscription_id }}' --required
;