Class: PEClient::Resource::RBACV2::Users
- Defined in:
- lib/pe_client/resources/rbac.v2/users.rb
Overview
With role-based access control (RBAC), you can manage local users and remote users (created on a directory service). Use the users endpoints to get lists of users, create local users, and delete, revoke, and reinstate users in PE.
Constant Summary collapse
Instance Method Summary collapse
-
#get(offset: nil, limit: nil, order: nil, order_by: nil, filter: nil, include_roles: nil) ⇒ Hash
Fetches all users, both local and remote (including the superuser) with options for filtering and sorting response content.
Methods inherited from Base
Constructor Details
This class inherits a constructor from PEClient::Resource::Base
Instance Method Details
#get(offset: nil, limit: nil, order: nil, order_by: nil, filter: nil, include_roles: nil) ⇒ Hash
Fetches all users, both local and remote (including the superuser) with options for filtering and sorting response content.
50 51 52 |
# File 'lib/pe_client/resources/rbac.v2/users.rb', line 50 def get(offset: nil, limit: nil, order: nil, order_by: nil, filter: nil, include_roles: nil) @client.get BASE_PATH, params: {offset:, limit:, order:, order_by:, filter:, include_roles:}.compact end |