// This file is autogenerated, DO NOT EDIT // Use `node scripts/generate-docs-examples.js` to generate the docs examples [source, js] ---- const response = await client.security.putRoleMapping({ name: "jwt1_users", refresh: "true", roles: ["user"], rules: { all: [ { field: { "realm.name": "jwt1", }, }, { field: { username: "principalname1", }, }, { field: { dn: "CN=Principal Name 1,DC=example.com", }, }, { field: { groups: "group1", }, }, { field: { "metadata.jwt_claim_other": "other1", }, }, ], }, enabled: true, }); console.log(response); ----