Issue creating group through dsscli

Options
Ouss
Ouss Registered Posts: 2

I want to create a group through command "dsscli create-group"

but the thing is no parameters can grant permission to "create workspace"

none of the --may-xxx flags grant creating workspace permission

Answers

  • Sarina
    Sarina Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer Posts: 315 Dataiker
    edited July 17
    Options

    Hi @Ouss
    ,

    Indeed you are correct that the dsscli option for creating groups hasn't been updated with an option to add workspaces.

    If it would work, you can use the Python API for this functionality:

    import dataiku 
    group = client.get_group('newgroup')
    definition = group.get_definition()
    definition['mayCreateWorkspaces'] = True
    group.set_definition(definition)


    Thank you,
    Sarina

Setup Info
    Tags
      Help me…