vm_insights_onboarding_status
Creates, updates, deletes, gets or lists a vm_insights_onboarding_status resource.
Overview
| Name | vm_insights_onboarding_status |
| Type | Resource |
| Id | azure.monitor.vm_insights_onboarding_status |
Fields
The following fields are returned by SELECT queries:
- get
The operation completed successfully.
| Name | Datatype | Description |
|---|---|---|
id | string | Azure resource Id |
name | string | Azure resource name |
properties | object | Resource properties. |
type | string | Azure resource type |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceUri | Retrieves the VM Insights onboarding status for the specified resource or resource scope. |
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 |
|---|---|---|
resourceUri | string | The fully qualified Azure Resource manager identifier of the resource, or scope, whose status to retrieve. |
SELECT examples
- get
Retrieves the VM Insights onboarding status for the specified resource or resource scope.
SELECT
id,
name,
properties,
type
FROM azure.monitor.vm_insights_onboarding_status
WHERE resourceUri = '{{ resourceUri }}' -- required
;