How to use create_inherited_role_on_projects_group method in tempest

Best Python code snippet using tempest_python

inherited_roles_client.py

Source:inherited_roles_client.py Github

copy

Full Screen

...104 "OS-INHERIT/projects/%s/users/%s/roles/%s/inherited_to_projects"105 % (project_id, user_id, role_id))106 self.expected_success(204, resp.status)107 return rest_client.ResponseBody(resp)108 def create_inherited_role_on_projects_group(109 self, project_id, group_id, role_id):110 """Assigns a role to a group on projects in a subtree."""111 resp, body = self.put(112 "OS-INHERIT/projects/%s/groups/%s/roles/%s/inherited_to_projects"113 % (project_id, group_id, role_id), None)114 self.expected_success(204, resp.status)115 return rest_client.ResponseBody(resp, body)116 def delete_inherited_role_from_group_on_project(117 self, project_id, group_id, role_id):118 """Revokes an inherited role from a group on a project."""119 resp, body = self.delete(120 "OS-INHERIT/projects/%s/groups/%s/roles/%s/inherited_to_projects"121 % (project_id, group_id, role_id))122 self.expected_success(204, resp.status)...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tempest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful