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

NameDatatypeDescription
appendixtextfield from the properties object
contenttextfield from the properties object
parameterstextfield from the properties object
provisioning_statetextfield from the properties object
scopetextfield from the properties object
simplifiedSolutionsResourceNametextfield from the properties object
solution_idtextfield from the properties object
titletextfield from the properties object

Methods

NameAccessible byRequired 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.

SELECT examples

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

SELECT
appendix,
content,
parameters,
provisioning_state,
scope,
simplifiedSolutionsResourceName,
solution_id,
title
FROM azure_extras.help.vw_simplified_solutions
WHERE scope = '{{ scope }}'
AND simplifiedSolutionsResourceName = '{{ simplifiedSolutionsResourceName }}';

INSERT example

Use the following StackQL query and manifest file to create a new simplified_solutions resource.

/*+ create */
INSERT INTO azure_extras.help.simplified_solutions (
scope,
simplifiedSolutionsResourceName,
properties
)
SELECT
'{{ scope }}',
'{{ simplifiedSolutionsResourceName }}',
'{{ properties }}'
;