publishers
Creates, updates, deletes, gets or lists a publishers
resource.
Overview
Name | publishers |
Type | Resource |
Id | azure_stack.azure_stack_hci.publishers |
Fields
- vw_publishers
- publishers
Name | Datatype | Description |
---|---|---|
clusterName | text | field from the properties object |
provisioning_state | text | field from the properties object |
publisherName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Publisher properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, publisherName, resourceGroupName, subscriptionId | Get Publisher resource details of HCI Cluster. |
list_by_cluster | SELECT | clusterName, resourceGroupName, subscriptionId | List Publishers available for the HCI Cluster. |
SELECT
examples
List Publishers available for the HCI Cluster.
- vw_publishers
- publishers
SELECT
clusterName,
provisioning_state,
publisherName,
resourceGroupName,
subscriptionId
FROM azure_stack.azure_stack_hci.vw_publishers
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure_stack.azure_stack_hci.publishers
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';