Skip to main content

publishers

Creates, updates, deletes, gets or lists a publishers resource.

Overview

Namepublishers
TypeResource
Idazure_stack.azure_stack_hci.publishers

Fields

NameDatatypeDescription
clusterNametextfield from the properties object
provisioning_statetextfield from the properties object
publisherNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterName, publisherName, resourceGroupName, subscriptionIdGet Publisher resource details of HCI Cluster.
list_by_clusterSELECTclusterName, resourceGroupName, subscriptionIdList Publishers available for the HCI Cluster.

SELECT examples

List Publishers available for the HCI Cluster.

SELECT
clusterName,
provisioning_state,
publisherName,
resourceGroupName,
subscriptionId
FROM azure_stack.azure_stack_hci.vw_publishers
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';