farm_beats_extensions
Creates, updates, deletes, gets or lists a farm_beats_extensions resource.
Overview
| Name | farm_beats_extensions |
| Type | Resource |
| Id | azure_extras.agrifood.farm_beats_extensions |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". |
name | string | The name of the resource. |
description | string | Textual description. |
detailedInformation | array | Detailed 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. |
extensionApiDocsLink | string | FarmBeatsExtension api docs link. |
extensionAuthLink | string | FarmBeatsExtension auth link. |
extensionCategory | string | Category of the extension. e.g. weather/sensor/satellite. |
farmBeatsExtensionId | string | FarmBeatsExtension ID. |
farmBeatsExtensionName | string | FarmBeatsExtension name. |
farmBeatsExtensionVersion | string | FarmBeatsExtension version. |
publisherId | string | Publisher ID. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
targetResourceType | string | Target ResourceType of the farmBeatsExtension. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". |
name | string | The name of the resource. |
description | string | Textual description. |
detailedInformation | array | Detailed 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. |
extensionApiDocsLink | string | FarmBeatsExtension api docs link. |
extensionAuthLink | string | FarmBeatsExtension auth link. |
extensionCategory | string | Category of the extension. e.g. weather/sensor/satellite. |
farmBeatsExtensionId | string | FarmBeatsExtension ID. |
farmBeatsExtensionName | string | FarmBeatsExtension name. |
farmBeatsExtensionVersion | string | FarmBeatsExtension version. |
publisherId | string | Publisher ID. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
targetResourceType | string | Target ResourceType of the farmBeatsExtension. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | farm_beats_extension_id | Get farmBeats extension. | |
list | select | $maxPageSize | Get 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.
| Name | Datatype | Description |
|---|---|---|
farm_beats_extension_id | string | farmBeatsExtensionId to be queried. Required. |
$maxPageSize | integer | Maximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default value = 50. Default value is 50. |
SELECT examples
- get
- list
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
;
Get list of 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 $maxPageSize = '{{ $maxPageSize }}'
;