Write-attribute: Difference between revisions
(→Syntax) |
|||
Line 16: | Line 16: | ||
<pre> | <pre> | ||
:write-attribute(name="...",value="...") | :write-attribute(name="...", value="...") | ||
</pre> | </pre> | ||
Revision as of 04:05, 16 November 2016
Internal
Overview
Sets the value of an attribute for the selected resource. The value may be null if the underlying model supports null values.
If the attribute does not exist, but it is a known attribute to the management resource, it is created and assigned to the given value.
If the attribute does not exist and it is not a known attribute to the management resource, the operation fails with "outcome" => "failed" and description "JBAS014792: Unknown attribute ..."
If the attribute exists, the current value is overwritten.
Syntax
:write-attribute(name="...", value="...")
Use Cases
Adding a Known Attribute
Add an "autoflush" configuration to a logging file handler:
/subsystem=logging/file-handler=TEST:write-attribute("autoflush"="true")
Because it is a known attribute of the management node, the attribute will be added if it does not exist, or its value overwritten if it exists.
Removing an Attribute
Use the following syntax to remove an attribute:
:write-attribute(name=socket-binding)
socket-binding will be removed from the current node.
If the management resource is listed in CLI, the "removed" attribute shows as "undefined":
... socket-binding=undefined ...