Skip to main content

extension_publisher

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

Overview

Nameextension_publisher
TypeResource
Idazure.hybrid_compute.extension_publisher

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocationGets 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.

NameDatatypeDescription
locationstringThe location name. Required.

SELECT examples

Gets all Extension publishers based on the location.

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