Sha256: a5d5ede832172285672fcdbadb45f865627cce07cda45ae9e368b29342206110

Contents?: true

Size: 1.64 KB

Versions: 8

Compression:

Stored size: 1.64 KB

Contents

# This is just a stub for now.

#
module JSS

  #
  class MobileDeviceConfigurationProfile < APIObject

    # Mix-Ins
    ###################################
    include JSS::Categorizable
    include JSS::Sitable
    include JSS::Scopable
    include JSS::SelfServable

    ### The base for REST resources of this class
    RSRC_BASE = 'mobiledeviceconfigurationprofiles'.freeze

    ### the hash key used for the JSON list output of all objects in the JSS
    RSRC_LIST_KEY = :configuration_profiles

    ### The hash key used for the JSON object output.
    ### It's also used in various error messages
    RSRC_OBJECT_KEY = :configuration_profile

    # the object type for this object in
    # the object history table.
    # See {APIObject#add_object_history_entry}
    OBJECT_HISTORY_OBJECT_TYPE = 22

    # Our scopes deal with computers
    SCOPE_TARGET_KEY = :mobile_devices

    SITE_SUBSET = :general

    # Attributes
    ###################################

    # @return [String] the description of this profile
    attr_reader :description

    # @return [String] the distribution_method of this profile
    attr_reader :distribution_method

    # @return [Boolean] can the user remove this profile
    attr_reader :user_removable

    # @return [String] the level (user/computer) of this profile
    attr_reader :level

    # @return [String] the uuid of this profile. NOT Updatable
    attr_reader :uuid

    # @return [Boolean] Should this profile be redeployed when an inventory update happens?
    attr_reader :redeploy_on_update

    # @return [String] the plist containing the payloads for this profile. NOT Updatable
    attr_reader :payloads

  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ruby-jss-0.11.0 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.11.0b3 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.11.0b2 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.11.0b1 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.11.0a6 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.11.0a5 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.10.2a5 lib/jss/api_object/mobile_device_configuration_profile.rb
ruby-jss-0.10.2a4 lib/jss/api_object/mobile_device_configuration_profile.rb