class Jamf::SoftwareUpdateServer
A Software Update Server in the JSS
Only minimally implemented, for access to the APIObject
list methods
@see Jamf::APIObject
Constants
- OBJECT_HISTORY_OBJECT_TYPE
the object type for this object in the object history table. See {APIObject#add_object_history_entry}
- RSRC_BASE
The base for REST resources of this class
- RSRC_LIST_KEY
the hash key used for the JSON list output of all objects in the
JSS
- RSRC_OBJECT_KEY
The hash key used for the JSON object output. It’s also used in various error messages
Attributes
ip_address[R]
@return [String]
port[R]
@return [Integer]
set_system_wide[R]
@return [Boolean]
Public Class Methods
new(**args)
click to toggle source
@see SS::APIObject#initialize
Calls superclass method
Jamf::APIObject::new
# File lib/jamf/api/classic/api_objects/software_update_server.rb 98 def initialize(**args) 99 super 100 @ip_address = @init_data[:ip_address] 101 @port = @init_data[:port] 102 @set_system_wide = @init_data[:set_system_wide] 103 end