25 lines
465 B
Plaintext
25 lines
465 B
Plaintext
// 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: "mapping5",
|
|
role_templates: [
|
|
{
|
|
template: {
|
|
source: "{{#tojson}}groups{{/tojson}}",
|
|
},
|
|
format: "json",
|
|
},
|
|
],
|
|
rules: {
|
|
field: {
|
|
"realm.name": "saml1",
|
|
},
|
|
},
|
|
enabled: true,
|
|
});
|
|
console.log(response);
|
|
----
|