Skip to main content

extension_type

Creates, updates, deletes, gets or lists an extension_type resource.

Overview

Nameextension_type
TypeResource
Idazure.hybrid_compute.extension_type

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the extension type.
namestringThe name of the extension type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, publisherGets all Extension types based on location and publisher.

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
locationstringThe location name. Required.
publisherstringThe publisher of the Extension being received. Required.

SELECT examples

Gets all Extension types based on location and publisher.

SELECT
id,
name
FROM azure.hybrid_compute.extension_type
WHERE location = '{{ location }}' -- required
AND publisher = '{{ publisher }}' -- required
;