location_based_recommended_action_sessions_results
Creates, updates, deletes, gets or lists a location_based_recommended_action_sessions_results resource.
Overview
| Name | location_based_recommended_action_sessions_results |
| Type | Resource |
| Id | azure.maria_db.location_based_recommended_action_sessions_results |
Fields
The following fields are returned by SELECT queries:
- list
Created
| Name | Datatype | Description |
|---|---|---|
properties | object | The properties of a recommendation action. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, locationName, operationId | Recommendation action session operation result. |
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 |
|---|---|---|
locationName | string | The name of the location. |
operationId | string | The operation identifier. |
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- list
Recommendation action session operation result.
SELECT
properties
FROM azure.maria_db.location_based_recommended_action_sessions_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND operationId = '{{ operationId }}' -- required
;