Skip to main content

Get iGroups

Contributors netapp-aoife

You can use this workflow to retrieve all the initiator groups (iGroups). iGroups is a collection of initiators (iSCSI clients). The iGroups information is required when creating a volume with the iSCSI protocol using an existing iGroup.

Choose the workflow to use based on the type of Cloud Volumes ONTAP deployment:

Get iGroups for a single node

You can use this workflow to retrieve the iGroups in a single node system.

1. Create the system

Perform the workflow Create Google Cloud single node system and choose the publicId and svmName values for the system workingEnvironmentId and svmName path parameters.

2. Get the iGroups configuration

HTTP method Path

GET

/occm/api/gcp/vsa/volumes/igroups/{workingEnvironmentId}/{svmName}

curl example
curl --location --request GET 'https://api.bluexp.netapp.com/occm/api/gcp/vsa/volumes/igroups/<WORKING_ENV_ID>/<SVM_NAME>' --header 'x-agent-id: <AGENT_ID>' --header 'Authorization: Bearer <ACCESS_TOKEN>' --header 'Content-Type: application/json'
Input
  • Path parameter <WORKING_ENV_ID> workingEnvironmentId string

  • Path parameter <SVM_NAME> svmName string

Output

The JSON output example includes a list of iGroups.

JSON output example
[
    {
        "igroupName": "zivIgroup1",
        "osType": "linux",
        "portsetName": "",
        "igroupType": "iscsi",
        "initiators": [
            "iqn.1994-05.com.redhat:1d9ac633937c"
        ]
    },
    {
        "igroupName": "zivIgroup2",
        "osType": "linux",
        "portsetName": "",
        "igroupType": "iscsi",
        "initiators": [
            "iqn.1994-05.com.redhat:96de86825216"
        ]
    }
]

Get iGroups for a high availability pair

You can use this workflow to retrieve the iGroups in an HA system.

1. Create the system

Perform the workflow Create Google Cloud single node system and choose the publicId and svmName values for the system workingEnvironmentId and svmName path parameters.

2. Get the CIFS configurations

HTTP method Path

GET

/occm/api/gcp/ha/volumes/igroups/{workingEnvironmentId}/{svmName}

curl example
curl --location --request GET 'https://api.bluexp.netapp.com/occm/api/gcp/ha/volumes/igroups/<WORKING_ENV_ID>/<SVM_NAME>' --header 'x-agent-id: <AGENT_ID>' --header 'Authorization: Bearer <ACCESS_TOKEN>' --header 'Content-Type: application/json'
Input
  • Path parameter <WORKING_ENV_ID> workingEnvironmentId string

  • Path parameter <SVM_NAME> svmName string

Output

The JSON output example includes a list of iGroups.

JSON output example
[
    {
        "igroupName": "zivIgroup1",
        "osType": "linux",
        "portsetName": "",
        "igroupType": "iscsi",
        "initiators": [
            "iqn.1994-05.com.redhat:1d9ac633937c"
        ]
    },
    {
        "igroupName": "zivIgroup2",
        "osType": "linux",
        "portsetName": "",
        "igroupType": "iscsi",
        "initiators": [
            "iqn.1994-05.com.redhat:96de86825216"
        ]
    }
]