ruby-jss 0.10.2a5 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ruby-jss might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGES.md +5 -0
- data/lib/jss/api_connection.rb +19 -38
- data/lib/jss/api_object/advanced_search.rb +1 -5
- data/lib/jss/api_object/computer.rb +292 -316
- data/lib/jss/api_object/computer_invitation.rb +3 -5
- data/lib/jss/api_object/ebook.rb +0 -5
- data/lib/jss/api_object/group/computer_group.rb +0 -4
- data/lib/jss/api_object/group/mobile_device_group.rb +1 -4
- data/lib/jss/api_object/group.rb +1 -6
- data/lib/jss/api_object/mac_application.rb +0 -5
- data/lib/jss/api_object/mobile_device.rb +336 -57
- data/lib/jss/api_object/mobile_device_application.rb +0 -6
- data/lib/jss/api_object/mobile_device_configuration_profile.rb +0 -36
- data/lib/jss/api_object/osx_configuration_profile.rb +151 -115
- data/lib/jss/api_object/peripheral.rb +7 -5
- data/lib/jss/api_object/policy.rb +0 -5
- data/lib/jss/api_object/restricted_software.rb +0 -5
- data/lib/jss/api_object/scopable/scope.rb +411 -367
- data/lib/jss/api_object/self_servable.rb +4 -15
- data/lib/jss/api_object/site.rb +76 -45
- data/lib/jss/api_object/user.rb +3 -7
- data/lib/jss/api_object.rb +4 -74
- data/lib/jss/utility.rb +0 -21
- data/lib/jss/version.rb +1 -1
- data/lib/jss.rb +0 -4
- metadata +6 -10
- data/lib/jss/api_object/mdm.rb +0 -1268
- data/lib/jss/api_object/patch.rb +0 -38
- data/lib/jss/api_object/patch_policy.rb +0 -38
- data/lib/jss/api_object/sitable.rb +0 -197
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebd3ed57a6244c6f97239f18b8f297a1c638c333
|
4
|
+
data.tar.gz: c80c3542d2a455decccb50275ab772a3dc320776
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb254e9ca0b1b5c990f503bc6a587e5d140b5406e785b74052bd0ad12ee4842695d41dc30dd4af8bc4def64900204e11293a5b27fccf6704ac76d48796b28fe2
|
7
|
+
data.tar.gz: f0ebc46ecef64a7cb2ceb13f4d29bdc68880db726ff527afe2f95fa78e817f0c45ae8d8051de2646ab5ef4fe8cd5da9efe20f2a52b898b3d67fc2616bfc68a1a
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Change History
|
2
2
|
|
3
|
+
## v 0.10.2, 2018-02-16
|
4
|
+
|
5
|
+
- *IMPORTANT BUG FIX*: Updating JSS::Extendable objects with no changes to ext. attribs will no longer erase all ext attrib values. (!)
|
6
|
+
|
7
|
+
|
3
8
|
## v 0.10.1 2017-11-08
|
4
9
|
|
5
10
|
- Add: Extension Attribute values that are populated by Script or LDAP can now be modified via Extendable#set_ext_attr.
|
data/lib/jss/api_connection.rb
CHANGED
@@ -237,13 +237,11 @@ module JSS
|
|
237
237
|
# prod2_victim_md = production_api2.fetch :MobileDevice, id: 832
|
238
238
|
#
|
239
239
|
# Here are the API calls you can make directly from an APIConnection object.
|
240
|
-
#
|
241
|
-
# subclasses, since they just call those methods, passing themselves in as the
|
242
|
-
# APIConnection to use.
|
240
|
+
# Most of them behave identically to the same methods in the APIObject classes
|
243
241
|
#
|
244
242
|
# - {#all} The 'list' methods of the various APIObject classes. Use the 'only:'
|
245
243
|
# parameter to specify one of the sub-list-methods, like #all_ids or
|
246
|
-
# #all_laptops
|
244
|
+
# #all_laptops
|
247
245
|
# - {#map_all_ids} the equivalent of #map_all_ids_to in the APIObject classes
|
248
246
|
# - {#valid_id} given a class and an identifier (like macaddress or udid)
|
249
247
|
# return a valid id or nil
|
@@ -256,9 +254,6 @@ module JSS
|
|
256
254
|
# - {#send_computer_mdm_command} same as {Computer.send_mdm_command}
|
257
255
|
# - {#computer_checkin_settings} same as {Computer.checkin_settings}
|
258
256
|
# - {#computer_inventory_collection_settings} same as {Computer.inventory_collection_settings}
|
259
|
-
# - {#computer_application_usage} same as {Computer.application_usage}
|
260
|
-
# - {#computer_management_data} same as {Computer.management_data}
|
261
|
-
# - {#computer_history} same as {Computer.history}
|
262
257
|
# - {#send_mobiledevice_mdm_command} same as {MobileDevice.send_mdm_command}
|
263
258
|
# - {#master_distribution_point} same as {DistributionPoint.master_distribution_point}
|
264
259
|
# - {#my_distribution_point} same as {DistributionPoint.my_distribution_point}
|
@@ -744,46 +739,23 @@ module JSS
|
|
744
739
|
the_class.make args
|
745
740
|
end
|
746
741
|
|
747
|
-
# Call {JSS::Computer.checkin_settings}
|
742
|
+
# Call {JSS::Computer.checkin_settings} passing this API
|
748
743
|
# connection
|
749
744
|
#
|
745
|
+
# @return (see JSS::Computer.checkin_settings)
|
746
|
+
#
|
750
747
|
def computer_checkin_settings
|
751
748
|
JSS::Computer.checkin_settings api: self
|
752
749
|
end
|
753
750
|
|
754
|
-
# Call {JSS::Computer.inventory_collection_settings} q.v., passing this API
|
755
|
-
# connection
|
756
|
-
#
|
757
|
-
def computer_inventory_collection_settings
|
758
|
-
JSS::Computer.inventory_collection_settings api: self
|
759
|
-
end
|
760
|
-
|
761
|
-
# Call {JSS::Computer.application_usage} q.v., passing this API
|
762
|
-
# connection
|
763
|
-
#
|
764
|
-
def computer_application_usage(ident, start_date, end_date = nil)
|
765
|
-
JSS::Computer.application_usage ident, start_date, end_date, api: self
|
766
|
-
end
|
767
|
-
|
768
|
-
# Call {JSS::Computer.management_data} q.v., passing this API
|
769
|
-
# connection
|
770
|
-
#
|
771
|
-
def computer_management_data(ident, subset: nil, only: nil)
|
772
|
-
JSS::Computer.management_data ident, subset: subset, only: only, api: self
|
773
|
-
end
|
774
751
|
|
775
|
-
# Call {JSS::Computer.
|
752
|
+
# Call {JSS::Computer.inventory_collection_settings} passing this API
|
776
753
|
# connection
|
777
754
|
#
|
778
|
-
|
779
|
-
JSS::Computer.history ident, subset: subset, api: self
|
780
|
-
end
|
781
|
-
|
782
|
-
# Call {JSS::Computer.send_mdm_command} q.v., passing this API
|
783
|
-
# connection
|
755
|
+
# @return (see JSS::Computer.checkin_settings)
|
784
756
|
#
|
785
|
-
def
|
786
|
-
JSS::Computer.
|
757
|
+
def computer_inventory_collection_settings
|
758
|
+
JSS::Computer.inventory_collection_settings api: self
|
787
759
|
end
|
788
760
|
|
789
761
|
# Get the DistributionPoint instance for the master
|
@@ -862,7 +834,7 @@ module JSS
|
|
862
834
|
#
|
863
835
|
# @return [Array<Integer>] the ids of the NetworkSegments containing the given ip
|
864
836
|
#
|
865
|
-
def network_segments_for_ip(ip)
|
837
|
+
def network_segments_for_ip(ip, refresh = false)
|
866
838
|
ok_ip = IPAddr.new(ip)
|
867
839
|
matches = []
|
868
840
|
network_ranges.each { |id, subnet| matches << id if subnet.include?(ok_ip) }
|
@@ -877,6 +849,15 @@ module JSS
|
|
877
849
|
network_segments_for_ip JSS::Client.my_ip_address
|
878
850
|
end
|
879
851
|
|
852
|
+
# Send an MDM command to one or more computers managed by
|
853
|
+
# this JSS
|
854
|
+
#
|
855
|
+
# see {JSS::Computer.send_mdm_command}
|
856
|
+
#
|
857
|
+
def send_computer_mdm_command(targets, command, passcode = nil)
|
858
|
+
JSS::Computer.send_mdm_command(targets, command, passcode, api: self)
|
859
|
+
end
|
860
|
+
|
880
861
|
# Send an MDM command to one or more mobile devices managed by
|
881
862
|
# this JSS
|
882
863
|
#
|
@@ -60,16 +60,12 @@ module JSS
|
|
60
60
|
include JSS::Creatable
|
61
61
|
include JSS::Updatable
|
62
62
|
include JSS::Criteriable
|
63
|
-
include JSS::Sitable
|
64
63
|
|
65
64
|
# Class Constants
|
66
65
|
#####################################
|
67
66
|
|
68
67
|
EXPORT_FORMATS = [:csv, :tab, :xml].freeze
|
69
68
|
|
70
|
-
# Where is site data located in the API JSON?
|
71
|
-
SITE_SUBSET = :top
|
72
|
-
|
73
69
|
# Attributes
|
74
70
|
#####################################
|
75
71
|
|
@@ -346,7 +342,7 @@ module JSS
|
|
346
342
|
|
347
343
|
df = acs.add_element('display_fields')
|
348
344
|
@display_fields.each { |f| df.add_element('display_field').add_element('name').text = f }
|
349
|
-
|
345
|
+
|
350
346
|
doc.to_s
|
351
347
|
end # rest xml
|
352
348
|
|