Class: Jamf::DirectoryBindingType::Centrify
- Inherits:
-
Jamf::DirectoryBindingType
- Object
- Jamf::DirectoryBindingType
- Jamf::DirectoryBindingType::Centrify
- Defined in:
- lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb
Overview
Class for the specific ADmitMac DirectoryBinding type stored within the JSS
Attributes
Instance Attribute Summary collapse
-
#overwrite_existing ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS.
-
#preferred_domain_server ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS.
-
#update_PAM ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS.
-
#workstation_mode ⇒ Object
Attributes.
-
#zone ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS.
Instance Method Summary collapse
-
#initialize(init_data) ⇒ Centrify
constructor
An initializer for the Centrify object.
-
#type_setting_xml ⇒ REXML::Element
Return a REXML Element containing the current state of the DirectoryBindingType object for adding into the XML of the container.
Constructor Details
#initialize(init_data) ⇒ Centrify
An initializer for the Centrify object.
59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 59 def initialize(init_data) # Return without processing anything since there is # nothing to process. return if init_data.nil? # Process the provided information @workstation_mode = init_data[:workstation_mode] @overwrite_existing = init_data[:overwrite_existing] @update_PAM = init_data[:update_PAM] @zone = init_data[:zone] @preferred_domain_server = init_data[:preferred_domain_server] end |
Instance Attribute Details
#overwrite_existing ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS
Attributes
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 33 class Centrify < DirectoryBindingType # Mix-Ins ##################################### # Class Methods ##################################### # Class Constants ##################################### # Attributes ##################################### attr_reader :workstation_mode attr_reader :overwrite_existing, :update_PAM, :zone, :preferred_domain_server # Constructor ##################################### # An initializer for the Centrify object. # # @author Tyler Morgan # @see Jamf::DirectoryBinding # @see Jamf::DirectoryBindingType # # @param [Hash] initialize data def initialize(init_data) # Return without processing anything since there is # nothing to process. return if init_data.nil? # Process the provided information @workstation_mode = init_data[:workstation_mode] @overwrite_existing = init_data[:overwrite_existing] @update_PAM = init_data[:update_PAM] @zone = init_data[:zone] @preferred_domain_server = init_data[:preferred_domain_server] end # Public Instance Methods ##################################### # Sets the Centrify Mode to Workstation mode # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def workstation_mode=(newvalue) raise Jamf::InvalidDataError, 'workstation_mode must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @workstation_mode = newvalue container&.should_update end # Want to overwrite existing joined computer in the directory # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def overwrite_existing=(newvalue) raise Jamf::InvalidDataError, 'overwrite_existing must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @overwrite_existing = newvalue container&.should_update end # Update the PAM module and overwrite DirectoryService configuration # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def update_PAM=(newvalue) raise Jamf::InvalidDataError, 'update_PAM must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @update_PAM = newvalue container&.should_update end # The zone the computer is to be joined to # # @author Tyler Morgan # # @param newvalue [String] the new zone the computer is to be joined to # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def zone=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'zone must be a string.' unless newvalue.is_a? String newvalue end @zone = new container&.should_update end # The specific domain server that should be prioritized # # @author Tyler Morgan # # @param newvalue [String] The domain server that would be prioritized. # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def preferred_domain_server=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'preferred_domain_server must be a string.' unless newvalue.is_a? String newvalue end @preferred_domain_server = new container&.should_update end # Return a REXML Element containing the current state of the DirectoryBindingType # object for adding into the XML of the container. # # @author Tyler Morgan # # @return [REXML::Element] def type_setting_xml type_setting = REXML::Element.new 'centrify' type_setting.add_element('workstation_mode').text = @workstation_mode type_setting.add_element('overwrite_existing').text = @overwrite_existing type_setting.add_element('update_PAM').text = @update_PAM type_setting.add_element('zone').text = @zone type_setting.add_element('preferred_domain_server').text = @preferred_domain_server type_setting end end |
#preferred_domain_server ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS
Attributes
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 33 class Centrify < DirectoryBindingType # Mix-Ins ##################################### # Class Methods ##################################### # Class Constants ##################################### # Attributes ##################################### attr_reader :workstation_mode attr_reader :overwrite_existing, :update_PAM, :zone, :preferred_domain_server # Constructor ##################################### # An initializer for the Centrify object. # # @author Tyler Morgan # @see Jamf::DirectoryBinding # @see Jamf::DirectoryBindingType # # @param [Hash] initialize data def initialize(init_data) # Return without processing anything since there is # nothing to process. return if init_data.nil? # Process the provided information @workstation_mode = init_data[:workstation_mode] @overwrite_existing = init_data[:overwrite_existing] @update_PAM = init_data[:update_PAM] @zone = init_data[:zone] @preferred_domain_server = init_data[:preferred_domain_server] end # Public Instance Methods ##################################### # Sets the Centrify Mode to Workstation mode # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def workstation_mode=(newvalue) raise Jamf::InvalidDataError, 'workstation_mode must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @workstation_mode = newvalue container&.should_update end # Want to overwrite existing joined computer in the directory # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def overwrite_existing=(newvalue) raise Jamf::InvalidDataError, 'overwrite_existing must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @overwrite_existing = newvalue container&.should_update end # Update the PAM module and overwrite DirectoryService configuration # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def update_PAM=(newvalue) raise Jamf::InvalidDataError, 'update_PAM must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @update_PAM = newvalue container&.should_update end # The zone the computer is to be joined to # # @author Tyler Morgan # # @param newvalue [String] the new zone the computer is to be joined to # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def zone=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'zone must be a string.' unless newvalue.is_a? String newvalue end @zone = new container&.should_update end # The specific domain server that should be prioritized # # @author Tyler Morgan # # @param newvalue [String] The domain server that would be prioritized. # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def preferred_domain_server=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'preferred_domain_server must be a string.' unless newvalue.is_a? String newvalue end @preferred_domain_server = new container&.should_update end # Return a REXML Element containing the current state of the DirectoryBindingType # object for adding into the XML of the container. # # @author Tyler Morgan # # @return [REXML::Element] def type_setting_xml type_setting = REXML::Element.new 'centrify' type_setting.add_element('workstation_mode').text = @workstation_mode type_setting.add_element('overwrite_existing').text = @overwrite_existing type_setting.add_element('update_PAM').text = @update_PAM type_setting.add_element('zone').text = @zone type_setting.add_element('preferred_domain_server').text = @preferred_domain_server type_setting end end |
#update_PAM ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS
Attributes
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 33 class Centrify < DirectoryBindingType # Mix-Ins ##################################### # Class Methods ##################################### # Class Constants ##################################### # Attributes ##################################### attr_reader :workstation_mode attr_reader :overwrite_existing, :update_PAM, :zone, :preferred_domain_server # Constructor ##################################### # An initializer for the Centrify object. # # @author Tyler Morgan # @see Jamf::DirectoryBinding # @see Jamf::DirectoryBindingType # # @param [Hash] initialize data def initialize(init_data) # Return without processing anything since there is # nothing to process. return if init_data.nil? # Process the provided information @workstation_mode = init_data[:workstation_mode] @overwrite_existing = init_data[:overwrite_existing] @update_PAM = init_data[:update_PAM] @zone = init_data[:zone] @preferred_domain_server = init_data[:preferred_domain_server] end # Public Instance Methods ##################################### # Sets the Centrify Mode to Workstation mode # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def workstation_mode=(newvalue) raise Jamf::InvalidDataError, 'workstation_mode must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @workstation_mode = newvalue container&.should_update end # Want to overwrite existing joined computer in the directory # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def overwrite_existing=(newvalue) raise Jamf::InvalidDataError, 'overwrite_existing must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @overwrite_existing = newvalue container&.should_update end # Update the PAM module and overwrite DirectoryService configuration # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def update_PAM=(newvalue) raise Jamf::InvalidDataError, 'update_PAM must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @update_PAM = newvalue container&.should_update end # The zone the computer is to be joined to # # @author Tyler Morgan # # @param newvalue [String] the new zone the computer is to be joined to # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def zone=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'zone must be a string.' unless newvalue.is_a? String newvalue end @zone = new container&.should_update end # The specific domain server that should be prioritized # # @author Tyler Morgan # # @param newvalue [String] The domain server that would be prioritized. # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def preferred_domain_server=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'preferred_domain_server must be a string.' unless newvalue.is_a? String newvalue end @preferred_domain_server = new container&.should_update end # Return a REXML Element containing the current state of the DirectoryBindingType # object for adding into the XML of the container. # # @author Tyler Morgan # # @return [REXML::Element] def type_setting_xml type_setting = REXML::Element.new 'centrify' type_setting.add_element('workstation_mode').text = @workstation_mode type_setting.add_element('overwrite_existing').text = @overwrite_existing type_setting.add_element('update_PAM').text = @update_PAM type_setting.add_element('zone').text = @zone type_setting.add_element('preferred_domain_server').text = @preferred_domain_server type_setting end end |
#workstation_mode ⇒ Object
Attributes
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 33 class Centrify < DirectoryBindingType # Mix-Ins ##################################### # Class Methods ##################################### # Class Constants ##################################### # Attributes ##################################### attr_reader :workstation_mode attr_reader :overwrite_existing, :update_PAM, :zone, :preferred_domain_server # Constructor ##################################### # An initializer for the Centrify object. # # @author Tyler Morgan # @see Jamf::DirectoryBinding # @see Jamf::DirectoryBindingType # # @param [Hash] initialize data def initialize(init_data) # Return without processing anything since there is # nothing to process. return if init_data.nil? # Process the provided information @workstation_mode = init_data[:workstation_mode] @overwrite_existing = init_data[:overwrite_existing] @update_PAM = init_data[:update_PAM] @zone = init_data[:zone] @preferred_domain_server = init_data[:preferred_domain_server] end # Public Instance Methods ##################################### # Sets the Centrify Mode to Workstation mode # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def workstation_mode=(newvalue) raise Jamf::InvalidDataError, 'workstation_mode must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @workstation_mode = newvalue container&.should_update end # Want to overwrite existing joined computer in the directory # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def overwrite_existing=(newvalue) raise Jamf::InvalidDataError, 'overwrite_existing must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @overwrite_existing = newvalue container&.should_update end # Update the PAM module and overwrite DirectoryService configuration # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def update_PAM=(newvalue) raise Jamf::InvalidDataError, 'update_PAM must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @update_PAM = newvalue container&.should_update end # The zone the computer is to be joined to # # @author Tyler Morgan # # @param newvalue [String] the new zone the computer is to be joined to # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def zone=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'zone must be a string.' unless newvalue.is_a? String newvalue end @zone = new container&.should_update end # The specific domain server that should be prioritized # # @author Tyler Morgan # # @param newvalue [String] The domain server that would be prioritized. # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def preferred_domain_server=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'preferred_domain_server must be a string.' unless newvalue.is_a? String newvalue end @preferred_domain_server = new container&.should_update end # Return a REXML Element containing the current state of the DirectoryBindingType # object for adding into the XML of the container. # # @author Tyler Morgan # # @return [REXML::Element] def type_setting_xml type_setting = REXML::Element.new 'centrify' type_setting.add_element('workstation_mode').text = @workstation_mode type_setting.add_element('overwrite_existing').text = @overwrite_existing type_setting.add_element('update_PAM').text = @update_PAM type_setting.add_element('zone').text = @zone type_setting.add_element('preferred_domain_server').text = @preferred_domain_server type_setting end end |
#zone ⇒ Object
Class for the specific ADmitMac DirectoryBinding type stored within the JSS
Attributes
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 33 class Centrify < DirectoryBindingType # Mix-Ins ##################################### # Class Methods ##################################### # Class Constants ##################################### # Attributes ##################################### attr_reader :workstation_mode attr_reader :overwrite_existing, :update_PAM, :zone, :preferred_domain_server # Constructor ##################################### # An initializer for the Centrify object. # # @author Tyler Morgan # @see Jamf::DirectoryBinding # @see Jamf::DirectoryBindingType # # @param [Hash] initialize data def initialize(init_data) # Return without processing anything since there is # nothing to process. return if init_data.nil? # Process the provided information @workstation_mode = init_data[:workstation_mode] @overwrite_existing = init_data[:overwrite_existing] @update_PAM = init_data[:update_PAM] @zone = init_data[:zone] @preferred_domain_server = init_data[:preferred_domain_server] end # Public Instance Methods ##################################### # Sets the Centrify Mode to Workstation mode # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def workstation_mode=(newvalue) raise Jamf::InvalidDataError, 'workstation_mode must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @workstation_mode = newvalue container&.should_update end # Want to overwrite existing joined computer in the directory # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def overwrite_existing=(newvalue) raise Jamf::InvalidDataError, 'overwrite_existing must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @overwrite_existing = newvalue container&.should_update end # Update the PAM module and overwrite DirectoryService configuration # # @author Tyler Morgan # # @param newvalue [Bool] # # @raise [Jamf::InvalidDataError] If the new value doesn't match a Bool value # # @return [void] def update_PAM=(newvalue) raise Jamf::InvalidDataError, 'update_PAM must be true or false.' unless newvalue.is_a?(TrueClass) || newvalue.is_a(FalseClass) @update_PAM = newvalue container&.should_update end # The zone the computer is to be joined to # # @author Tyler Morgan # # @param newvalue [String] the new zone the computer is to be joined to # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def zone=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'zone must be a string.' unless newvalue.is_a? String newvalue end @zone = new container&.should_update end # The specific domain server that should be prioritized # # @author Tyler Morgan # # @param newvalue [String] The domain server that would be prioritized. # # @raise [Jamf::InvalidDataError] If the new value is not a string. # # @return [void] def preferred_domain_server=(newvalue) new = if newvalue.to_s.empty? Jamf::BLANK else # Data Check raise Jamf::InvalidDataError, 'preferred_domain_server must be a string.' unless newvalue.is_a? String newvalue end @preferred_domain_server = new container&.should_update end # Return a REXML Element containing the current state of the DirectoryBindingType # object for adding into the XML of the container. # # @author Tyler Morgan # # @return [REXML::Element] def type_setting_xml type_setting = REXML::Element.new 'centrify' type_setting.add_element('workstation_mode').text = @workstation_mode type_setting.add_element('overwrite_existing').text = @overwrite_existing type_setting.add_element('update_PAM').text = @update_PAM type_setting.add_element('zone').text = @zone type_setting.add_element('preferred_domain_server').text = @preferred_domain_server type_setting end end |
Instance Method Details
#type_setting_xml ⇒ REXML::Element
Return a REXML Element containing the current state of the DirectoryBindingType object for adding into the XML of the container.
182 183 184 185 186 187 188 189 190 191 |
# File 'lib/jamf/api/classic/api_objects/directory_binding_type/centrify.rb', line 182 def type_setting_xml type_setting = REXML::Element.new 'centrify' type_setting.add_element('workstation_mode').text = @workstation_mode type_setting.add_element('overwrite_existing').text = @overwrite_existing type_setting.add_element('update_PAM').text = @update_PAM type_setting.add_element('zone').text = @zone type_setting.add_element('preferred_domain_server').text = @preferred_domain_server type_setting end |