Class: Jamf::OAPISchemas::ManagedSoftwareUpdateStatus

Inherits:
Jamf::OAPIObject show all
Defined in:
lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb

Overview

OAPI Object Model and Enums for: ManagedSoftwareUpdateStatus

This class was automatically generated from the api/schema URL path on a Jamf Pro server version 11.14.1-t1740408745756

This class may be used directly, e.g instances of other classes may use instances of this class as one of their own properties/attributes.

It may also be used as a superclass when implementing Jamf Pro API Resources in ruby-jss. The subclasses include appropriate mixins, and should expand on the basic functionality provided here.

Container Objects: Other object models that use this model as the value in one of their attributes.

- Jamf::OAPISchemas::ManagedSoftwareUpdateStatuses

Sub Objects: Other object models used by this model’s attributes.

Endpoints and Privileges: API endpoints and HTTP operations that use this object model, and the Jamf Pro privileges needed to access them.

Constant Summary collapse

STATUS_OPTIONS =

Enums used by this class or others

%w[
  DOWNLOADING
  IDLE
  INSTALLING
  INSTALLED
  ERROR
  DOWNLOAD_FAILED
  DOWNLOAD_REQUIRES_COMPUTER
  DOWNLOAD_INSUFFICIENT_SPACE
  DOWNLOAD_INSUFFICIENT_POWER
  DOWNLOAD_INSUFFICIENT_NETWORK
  INSTALL_INSUFFICIENT_SPACE
  INSTALL_INSUFFICIENT_POWER
  INSTALL_PHONE_CALL_IN_PROGRESS
  INSTALL_FAILED
  UNKNOWN
]
OAPI_PROPERTIES =
{

  # @!attribute osUpdatesStatusId
  #   @return [String]
  osUpdatesStatusId: {
    class: :string,
    identifier: :primary
  },

  # @!attribute device
  #   @return [Hash{Symbol: Object}]
  device: {
    class: :hash
  },

  # @!attribute downloadPercentComplete
  #   @return [Float]
  downloadPercentComplete: {
    class: :number
  },

  # @!attribute downloaded
  #   @return [Boolean]
  downloaded: {
    class: :boolean
  },

  # @!attribute productKey
  #   @return [String]
  productKey: {
    class: :string
  },

  # @!attribute status
  #   @return [String]
  status: {
    class: :string,
    enum: STATUS_OPTIONS
  },

  # not applicable to all managed software update statuses
  # @!attribute deferralsRemaining
  #   @return [Integer]
  deferralsRemaining: {
    class: :integer
  },

  # not applicable to all managed software update statuses
  # @!attribute maxDeferrals
  #   @return [Integer]
  maxDeferrals: {
    class: :integer
  },

  # not applicable to all managed software update statuses
  # @!attribute nextScheduledInstall
  #   @return [Jamf::Timestamp]
  nextScheduledInstall: {
    class: Jamf::Timestamp,
    format: 'date-time'
  },

  # not applicable to all managed software update statuses
  # @!attribute pastNotifications
  #   @return [Array<Jamf::Timestamp>]
  pastNotifications: {
    class: Jamf::Timestamp,
    multi: true
  },

  # @!attribute created
  #   @return [Jamf::Timestamp]
  created: {
    class: Jamf::Timestamp,
    format: 'date-time'
  },

  # @!attribute updated
  #   @return [Jamf::Timestamp]
  updated: {
    class: Jamf::Timestamp,
    format: 'date-time'
  }

}

Instance Attribute Summary collapse

Constructor Details

This class inherits a constructor from Jamf::OAPIObject

Instance Attribute Details

#createdJamf::Timestamp

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 153

#deferralsRemainingInteger

Returns:

  • (Integer)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 123

#deviceHash{Symbol: Object}

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 92

#downloadedBoolean

Returns:

  • (Boolean)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 104

#downloadPercentCompleteFloat

Returns:

  • (Float)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 98

#maxDeferralsInteger

Returns:

  • (Integer)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 130

#nextScheduledInstallJamf::Timestamp

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 137

#osUpdatesStatusIdString

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 85

#pastNotificationsArray<Jamf::Timestamp>

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 145

#productKeyString

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 110

#statusString

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 116

#updatedJamf::Timestamp

Returns:



# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_status.rb', line 160