solution_self_helps
Creates, updates, deletes, gets or lists a solution_self_helps
resource.
Overview
Name | solution_self_helps |
Type | Resource |
Id | azure_extras.help.solution_self_helps |
Fields
The following fields are returned by SELECT
queries:
- get
Successful fetched solution result.
Name | Datatype | Description |
---|---|---|
properties | object | Solution result |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | solutionId | Gets Self Help Solutions for a given solutionId. Self Help Solutions consist of rich instructional video tutorials, links and guides to public documentation related to a specific problem that enables users to troubleshoot Azure issues. |
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 |
---|---|---|
solutionId | string | SolutionId is a unique id to identify a solution. You can retrieve the solution id using the Discovery api - https://learn.microsoft.com/en-us/rest/api/help/discovery-solution/list?view=rest-help-2023-09-01-preview&tabs=HTTP |
SELECT
examples
- get
Gets Self Help Solutions for a given solutionId. Self Help Solutions consist of rich instructional video tutorials, links and guides to public documentation related to a specific problem that enables users to troubleshoot Azure issues.
SELECT
properties
FROM azure_extras.help.solution_self_helps
WHERE solutionId = '{{ solutionId }}' -- required
;