extension_publisher
Creates, updates, deletes, gets or lists an extension_publisher resource.
Overview
| Name | extension_publisher |
| Type | Resource |
| Id | azure.hybrid_compute.extension_publisher |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the extension publisher. |
name | string | The name of the extension publisher. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location | Gets all Extension publishers based on the location. |
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. |
SELECT examples
- list
Gets all Extension publishers based on the location.
SELECT
id,
name
FROM azure.hybrid_compute.extension_publisher
WHERE location = '{{ location }}' -- required
;