Skip to main content

simplified_solutions

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

Overview

Namesimplified_solutions
TypeResource
Idazure_extras.help.simplified_solutions

Fields

The following fields are returned by SELECT queries:

Successful fetched simplified Solutions result.

NameDatatypeDescription
propertiesobjectSimplified Solutions result

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscope, simplifiedSolutionsResourceNameGet the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions.
createinsertscope, simplifiedSolutionsResourceNameCreates Simplified Solutions for an Azure subscription using 'solutionId' from Discovery Solutions as the input.

Simplified Solutions API makes the consumption of solutions APIs easier while still providing access to the same powerful solutions rendered in Solutions API. With Simplified Solutions, users don't have to worry about stitching together the article using replacement maps and can use the content in the API response to directly render as HTML content.

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.

NameDatatypeDescription
scopestringThe scope at which the operation is performed.
simplifiedSolutionsResourceNamestringSimplified Solutions Resource Name.

SELECT examples

Get the simplified Solutions using the applicable solutionResourceName while creating the simplified Solutions.

SELECT
properties
FROM azure_extras.help.simplified_solutions
WHERE scope = '{{ scope }}' -- required
AND simplifiedSolutionsResourceName = '{{ simplifiedSolutionsResourceName }}' -- required
;

INSERT examples

Creates Simplified Solutions for an Azure subscription using 'solutionId' from Discovery Solutions as the input.

Simplified Solutions API makes the consumption of solutions APIs easier while still providing access to the same powerful solutions rendered in Solutions API. With Simplified Solutions, users don't have to worry about stitching together the article using replacement maps and can use the content in the API response to directly render as HTML content.

INSERT INTO azure_extras.help.simplified_solutions (
data__properties,
scope,
simplifiedSolutionsResourceName
)
SELECT
'{{ properties }}',
'{{ scope }}',
'{{ simplifiedSolutionsResourceName }}'
RETURNING
properties
;