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:
- list
- get
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of the MDE configuration or data parameter needed to onboard the machine to MDE |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of the MDE configuration or data parameter needed to onboard the machine to MDE |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
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 |
---|---|---|---|---|
list | select | subscriptionId | api-version | The configuration or data needed to onboard the machine to MDE |
get | select | subscriptionId | api-version | The 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | Azure subscription ID |
api-version | string | API version for the operation |
SELECT
examples
- list
- get
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 }}'
;
The default 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 }}'
;