extension_type
Creates, updates, deletes, gets or lists an extension_type resource.
Overview
| Name | extension_type |
| Type | Resource |
| Id | azure.hybrid_compute.extension_type |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the extension type. |
name | string | The name of the extension type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, publisher | Gets 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.
| Name | Datatype | Description |
|---|---|---|
location | string | The location name. Required. |
publisher | string | The publisher of the Extension being received. Required. |
SELECT examples
- list
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
;