Skip to main content

volumes_get_group_id_list_for_ldap_users

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

Overview

Namevolumes_get_group_id_list_for_ldap_users
TypeResource
Idazure_isv.netapp.volumes_get_group_id_list_for_ldap_users

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
groupIdsForLdapUserarrayGroup Id list

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, accountName, poolName, volumeNameReturns the list of group Ids for a specific LDAP User

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
accountNamestringThe name of the NetApp account
poolNamestringThe name of the capacity pool
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
volumeNamestringThe name of the volume

SELECT examples

Returns the list of group Ids for a specific LDAP User

SELECT
groupIdsForLdapUser
FROM azure_isv.netapp.volumes_get_group_id_list_for_ldap_users
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND poolName = '{{ poolName }}' -- required
AND volumeName = '{{ volumeName }}' -- required
;