Skip to main content

solutions_discoverabilities

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

Overview

Namesolutions_discoverabilities
TypeResource
Idazure_extras.ag_food_platform.solutions_discoverabilities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectDataManagerForAgricultureSolution properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdataManagerForAgricultureSolutionIdGet Data Manager For Agriculture solution by id.
listselectfarmBeatsSolutionIds, farmBeatsSolutionNames, $maxPageSizeGet list of Data Manager For Agriculture solutions.

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
dataManagerForAgricultureSolutionIdstringdataManagerForAgricultureSolutionId to be queried.
$maxPageSizeinteger (int32)Maximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default value = 50.
farmBeatsSolutionIdsarrayIds of Data Manager For Agriculture Solutions which the customer requests to fetch.
farmBeatsSolutionNamesarrayNames of Data Manager For Agriculture Solutions which the customer requests to fetch.

SELECT examples

Get Data Manager For Agriculture solution by id.

SELECT
properties,
systemData
FROM azure_extras.ag_food_platform.solutions_discoverabilities
WHERE dataManagerForAgricultureSolutionId = '{{ dataManagerForAgricultureSolutionId }}' -- required
;