Skip to main content

farm_beats_extensions

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

Overview

Namefarm_beats_extensions
TypeResource
Idazure_extras.agrifood.farm_beats_extensions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}".
namestringThe name of the resource.
descriptionstringTextual description.
detailedInformationarrayDetailed information which shows summary of requested data. Used in descriptive get extension metadata call. Information for weather category per api included are apisSupported, customParameters, PlatformParameters and Units supported.
extensionApiDocsLinkstringFarmBeatsExtension api docs link.
extensionAuthLinkstringFarmBeatsExtension auth link.
extensionCategorystringCategory of the extension. e.g. weather/sensor/satellite.
farmBeatsExtensionIdstringFarmBeatsExtension ID.
farmBeatsExtensionNamestringFarmBeatsExtension name.
farmBeatsExtensionVersionstringFarmBeatsExtension version.
publisherIdstringPublisher ID.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
targetResourceTypestringTarget ResourceType of the farmBeatsExtension.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectfarm_beats_extension_idGet farmBeats extension.
listselect$maxPageSizeGet list of farmBeats extension.

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
farm_beats_extension_idstringfarmBeatsExtensionId to be queried. Required.
$maxPageSizeintegerMaximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default value = 50. Default value is 50.

SELECT examples

Get farmBeats extension.

SELECT
id,
name,
description,
detailedInformation,
extensionApiDocsLink,
extensionAuthLink,
extensionCategory,
farmBeatsExtensionId,
farmBeatsExtensionName,
farmBeatsExtensionVersion,
publisherId,
systemData,
targetResourceType,
type
FROM azure_extras.agrifood.farm_beats_extensions
WHERE farm_beats_extension_id = '{{ farm_beats_extension_id }}' -- required
;