Method: JSS::Extendable#set_ext_attr

Defined in:
lib/jss/api_object/extendable.rb

#set_ext_attr(name, value, validate_popup_choice: true, refresh: false) ⇒ void

This method returns an undefined value.

Set the value of an extension attribute

The new value is validated based on the data type of the Ext. Attrib:

  • If the ext. attrib. is defined with a data type of Integer/Number, the value must be an Integer.

  • If defined with a data type of Date, the value will be parsed as a timestamp, and parsing may raise an exception. Dates can’t be blank.

  • If defined wth data type of String, ‘to_s` will be called on the value.

By default, the full EA definition object is fetched to see if the EA’s input type is ‘popup menu’, and if so, the new value must be one of the defined popup choices, or blank.

The EA definitions used for popup validation are cached, so we don’t have to reach out to the server every time. If you expect the definition to have changed since it was cached, provide a truthy value to the refresh: parameter

To bypass popup validation complepletely, provide a falsey value to the validate_popup_choice: parameter. WARNING: beware that your value is the correct type and format, or you might get errors when saving back to the API.

Note that while the Jamf Pro Web interface does not allow editing the values of Extension Attributes populated by Scripts or LDAP, the API does allow it. Bear in mind however that those values will be reset again at the next recon.

Parameters:

  • name (String)

    the name of the extension attribute to set

  • value (String, Time, Integer)

    the new value for the extension attribute for this user

  • validate_popup_choice (Boolean) (defaults to: true)

    validate the new value against the E.A. definition. Defaults to true.

  • refresh (Boolean) (defaults to: false)

    Re-read the ext. attrib definition from the API, for popup validation.

Raises:

  • (ArgumentError)

183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/jss/api_object/extendable.rb', line 183

def set_ext_attr(name, value, validate_popup_choice: true, refresh: false)
  raise ArgumentError, "Unknown Extension Attribute Name: '#{name}'" unless ea_types.key? name

  value ||= JSS::BLANK
  validate_popup_value(name, value, refresh) if validate_popup_choice

  case ea_types[name]
  when JSS::ExtensionAttribute::DATA_TYPE_DATE
    raise JSS::InvalidDataError, "The value for #{name} must be a date, cannot be blank" if value == JSS::BLANK

    value = JSS.parse_datetime value

  when *JSS::ExtensionAttribute::NUMERIC_TYPES
    raise JSS::InvalidDataError, "The value for #{name} must be an integer" unless value.is_a? Integer

  else # String
    value = value.to_s
  end # case

  # update this ea hash in the @extension_attributes array
  @extension_attributes.each { |ea| ea[:value] = value if ea[:name] == name }

  # update the shortcut hash too
  @ext_attrs[name] = value if @ext_attrs
  @changed_eas << name
  @need_to_update = true
end