VSC and bulk loading Roles via csv

Hi,
I need to bulk load many roles into ISC, and I’m using a csv file.
Unfortunately, when it does, it defaults to ‘AND within groups, OR between groups’. Is there a way to set it up so it is ‘OR within groups, AND between groups’?

    "membership": {
        "type": "STANDARD",
        "criteria": {
            "operation": "OR",               - I don't want this to be the default
            "key": null,                     - I know I can just go in and delete it
            "values": null,                  - but it is a pain considering the number of 
            "stringValue": null,             - roles that I need to bulk load
            "children": [                    -
                {                            -
                    "operation": "AND",
                    "key": null,
                    "values": null,
                    "stringValue": null,
                    "children": [
                        {

Each child in the group of children will be to opposite of the group statement. So if you have 5 groupings using the OR statement then each child in that grouping will have the AND statement. And vise versa. When looking at this as a Json string it can be rather confusing to under stand the full tree of roles. But once you look at it in the UI it will make a ton of since how this are setup and why they are laid out.

From what I have played with groups can either be AND/OR and there is no way to group groups together to anything other then what you set. Then inside the groups is the OR/AND for each of the criteria you are looking to filter on. These can be grouped together by groups.

Listed below are 2 different ways to accomplish the same thing. Hope this helps.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.