Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

header-navigation
keyboard_arrow_up
close
keyboard_arrow_left
Automation Scripting User Guide
Table of Contents Expand all
list Table of Contents
file_download PDF
{ "lLangCode": "en", "lName": "English", "lCountryCode": "us", "transcode": "en_US" }
English
keyboard_arrow_right

attribute

date_range 13-Jan-21

Syntax

content_copy zoom_out_map
attribute attribute-name { 
    attribute-value; 
}

Description

Create an attribute with the given name. The attribute value is defined by a block of statements, which must be placed inside a set of braces.

Attributes

attribute-name

Name of the attribute, which can be an XPath expression or a string. Enclose string arguments in quotes.

attribute-value

A block of statements enclosed in curly braces that defines the attribute value.

SLAX Example

In the following example, the <book> element is output to the result tree with an attribute named format, which has the value "PDF":

content_copy zoom_out_map
<book> {
    attribute "format" {
        expr "PDF";
    }
}

In the following example, the value of the <name> node (rather than the literal string "name") is used to create an XML attribute with a value of "from‑" concatenated with the contents of the address node. Node values are selected from the current context.

content_copy zoom_out_map
<source> {
    attribute name {
        expr "from-" _ address;
    }
}

Release Information

Statement introduced in version 1.1 of the SLAX language, which is supported in Junos OS Release 12.2 and later releases.

footer-navigation