Class: Jamf::OAPISchemas::ManagedSoftwareUpdatePlanToggle

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

Overview

OAPI Object Model and Enums for: ManagedSoftwareUpdatePlanToggle

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

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.

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.

- '/v1/managed-software-updates/plans/feature-toggle:GET' needs permissions:
  - Read Managed Software Updates
- '/v1/managed-software-updates/plans/feature-toggle:PUT' needs permissions:
  - Read Managed Software Updates
  - Create Managed Software Updates
  - Update Managed Software Updates

Constant Summary collapse

OAPI_PROPERTIES =
{

  # @!attribute toggle
  #   @return [Boolean]
  toggle: {
    class: :boolean,
    required: true
  },

  # @!attribute [r] forceInstallLocalDateEnabled
  #   @return [Boolean]
  forceInstallLocalDateEnabled: {
    class: :boolean,
    readonly: true
  },

  # @!attribute [r] dssEnabled
  #   @return [Boolean]
  dssEnabled: {
    class: :boolean,
    readonly: true
  },

  # @!attribute [r] recipeEnabled
  #   @return [Boolean]
  recipeEnabled: {
    class: :boolean,
    readonly: true
  }

}

Instance Attribute Summary collapse

Constructor Details

This class inherits a constructor from Jamf::OAPIObject

Instance Attribute Details

#dssEnabledBoolean (readonly)

Returns:

  • (Boolean)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_plan_toggle.rb', line 88

#forceInstallLocalDateEnabledBoolean (readonly)

Returns:

  • (Boolean)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_plan_toggle.rb', line 81

#recipeEnabledBoolean (readonly)

Returns:

  • (Boolean)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_plan_toggle.rb', line 95

#toggleBoolean

Returns:

  • (Boolean)


# File 'lib/jamf/api/jamf_pro/oapi_schemas/managed_software_update_plan_toggle.rb', line 74