Skip to main content

recommended_actions

Creates, updates, deletes, gets or lists a recommended_actions resource.

Overview

Namerecommended_actions
TypeResource
Idazure.maria_db.recommended_actions

Fields

NameDatatypeDescription
action_idtextfield from the properties object
advisorNametextfield from the properties object
advisor_nametextfield from the properties object
created_timetextfield from the properties object
detailstextfield from the properties object
expiration_timetextfield from the properties object
reasontextfield from the properties object
recommendation_typetextfield from the properties object
recommendedActionNametextfield from the properties object
resourceGroupNametextfield from the properties object
serverNametextfield from the properties object
session_idtextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTadvisorName, recommendedActionName, resourceGroupName, serverName, subscriptionIdRetrieve recommended actions from the advisor.
list_by_serverSELECTadvisorName, resourceGroupName, serverName, subscriptionIdRetrieve recommended actions from the advisor.

SELECT examples

Retrieve recommended actions from the advisor.

SELECT
action_id,
advisorName,
advisor_name,
created_time,
details,
expiration_time,
reason,
recommendation_type,
recommendedActionName,
resourceGroupName,
serverName,
session_id,
subscriptionId
FROM azure.maria_db.vw_recommended_actions
WHERE advisorName = '{{ advisorName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';