sap_monitors
Creates, updates, deletes, gets or lists a sap_monitors resource.
Overview
| Name | sap_monitors |
| Type | Resource |
| Id | azure_isv.hana_on_azure.sap_monitors |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
location | string | The geo-location where the resource lives |
properties | object | SAP monitor properties |
tags | object | Resource tags. |
| Name | Datatype | Description |
|---|---|---|
location | string | The geo-location where the resource lives |
properties | object | SAP monitor properties |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, sapMonitorName | The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023. | |
list | select | subscriptionId | The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023. | |
create | insert | subscriptionId, resourceGroupName, sapMonitorName | The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023. | |
update | update | subscriptionId, resourceGroupName, sapMonitorName | The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023. | |
delete | delete | subscriptionId, resourceGroupName, sapMonitorName | The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023. |
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 |
|---|---|---|
resourceGroupName | string | Name of the resource group. |
sapMonitorName | string | Name of the SAP monitor resource. |
subscriptionId | string | Subscription ID which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- get
- list
The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023.
SELECT
location,
properties,
tags
FROM azure_isv.hana_on_azure.sap_monitors
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND sapMonitorName = '{{ sapMonitorName }}' -- required
;
The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023.
SELECT
location,
properties,
tags
FROM azure_isv.hana_on_azure.sap_monitors
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
INSERT examples
- create
- Manifest
The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023.
INSERT INTO azure_isv.hana_on_azure.sap_monitors (
data__properties,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
sapMonitorName
)
SELECT
'{{ properties }}',
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ sapMonitorName }}'
RETURNING
location,
properties,
tags
;
# Description fields are for documentation purposes
- name: sap_monitors
props:
- name: subscriptionId
value: string
description: Required parameter for the sap_monitors resource.
- name: resourceGroupName
value: string
description: Required parameter for the sap_monitors resource.
- name: sapMonitorName
value: string
description: Required parameter for the sap_monitors resource.
- name: properties
value: object
description: |
SAP monitor properties
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
UPDATE examples
- update
The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023.
UPDATE azure_isv.hana_on_azure.sap_monitors
SET
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND sapMonitorName = '{{ sapMonitorName }}' --required
RETURNING
location,
properties,
tags;
DELETE examples
- delete
The product Microsoft.Workloads/sapMonitors (AMS Classic) is officially retired as of May 31, 2023.
DELETE FROM azure_isv.hana_on_azure.sap_monitors
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND sapMonitorName = '{{ sapMonitorName }}' --required
;