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
Name | volumes_get_group_id_list_for_ldap_users |
Type | Resource |
Id | azure_isv.netapp.volumes_get_group_id_list_for_ldap_users |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
groupIdsForLdapUser | array | Group Id list |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , accountName , poolName , volumeName | Returns 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.
Name | Datatype | Description |
---|---|---|
accountName | string | The name of the NetApp account |
poolName | string | The name of the capacity pool |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
volumeName | string | The name of the volume |
SELECT
examples
- list
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
;