catalog_user.

load_and_put_declarative_users_user_groups

load_and_put_declarative_users_user_groups(layout_root_path: Path)

Loads and sets the layouts stored using `store_declarative_users_user_groups`.

This method combines `load_declarative_users` and `put_declarative_users_user_groups` methods to load and set layouts stored using `store_declarative_users_user_groups`.

Parameters

nametypedescription
layout_root_pathPathPath to the root of the layout directory.. Defaults to Path.cwd().

Returns

None

Example

The load and put can be done two ways.

Either by one call:

# Load and put users and user groups in one method
sdk.catalog_user.load_and_put_declarative_users_user_groups(layout_root_path: Path = Path.cwd())

Or by two separate calls:

# Load users and user groups from directory
declarative_users_and_user_groups = sdk.catalog_user.load_declarative_users_user_groups(layout_root_path: Path = Path.cwd())
# Put on server
sdk.catalog_user.put_declarative_users_user_groups(declarative_users_and_user_groups)

The result is identical.