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
- vw_solution_self_helps
- solution_self_helps
Name | Datatype | Description |
---|---|---|
content | text | field from the properties object |
replacement_maps | text | field from the properties object |
sections | text | field from the properties object |
solutionId | text | field from the properties object |
solution_id | text | field from the properties object |
title | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Solution result |
Methods
Name | Accessible by | Required 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. |
SELECT
examples
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.
- vw_solution_self_helps
- solution_self_helps
SELECT
content,
replacement_maps,
sections,
solutionId,
solution_id,
title
FROM azure_extras.help.vw_solution_self_helps
WHERE solutionId = '{{ solutionId }}';
SELECT
properties
FROM azure_extras.help.solution_self_helps
WHERE solutionId = '{{ solutionId }}';