Skip to content

Latest commit

 

History

History
136 lines (96 loc) · 4.56 KB

SmartComputerGroupsPreviewApi.md

File metadata and controls

136 lines (96 loc) · 4.56 KB

jamf.SmartComputerGroupsPreviewApi

All URIs are relative to https://tryitout.jamfcloud.com/uapi

Method HTTP request Description
v1_computers_id_recalculate_smart_groups_post POST /v1/computers/{id}/recalculate-smart-groups Recalculate a smart group for the given id
v1_smart_computer_groups_id_recalculate_post POST /v1/smart-computer-groups/{id}/recalculate Recalculate the smart group for the given id

v1_computers_id_recalculate_smart_groups_post

RecalculationResults v1_computers_id_recalculate_smart_groups_post(id)

Recalculate a smart group for the given id

Recalculates a smart group for the given id and then returns the count of smart groups the computer falls into

Example

from __future__ import print_function
import time
import jamf
from jamf.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://tryitout.jamfcloud.com/uapi
# See configuration.py for a list of all supported configuration parameters.
configuration = jamf.Configuration(
    host = "https://tryitout.jamfcloud.com/uapi"
)


# Enter a context with an instance of the API client
with jamf.ApiClient() as api_client:
    # Create an instance of the API class
    api_instance = jamf.SmartComputerGroupsPreviewApi(api_client)
    id = 56 # int | id of computer

    try:
        # Recalculate a smart group for the given id 
        api_response = api_instance.v1_computers_id_recalculate_smart_groups_post(id)
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling SmartComputerGroupsPreviewApi->v1_computers_id_recalculate_smart_groups_post: %s\n" % e)

Parameters

Name Type Description Notes
id int id of computer

Return type

RecalculationResults

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful response -
400 smart group not found -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

v1_smart_computer_groups_id_recalculate_post

RecalculationResults v1_smart_computer_groups_id_recalculate_post(id)

Recalculate the smart group for the given id

Recalculates the smart group for the given id and then returns the ids for the computers in the smart group

Example

from __future__ import print_function
import time
import jamf
from jamf.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://tryitout.jamfcloud.com/uapi
# See configuration.py for a list of all supported configuration parameters.
configuration = jamf.Configuration(
    host = "https://tryitout.jamfcloud.com/uapi"
)


# Enter a context with an instance of the API client
with jamf.ApiClient() as api_client:
    # Create an instance of the API class
    api_instance = jamf.SmartComputerGroupsPreviewApi(api_client)
    id = 56 # int | instance id of smart group

    try:
        # Recalculate the smart group for the given id 
        api_response = api_instance.v1_smart_computer_groups_id_recalculate_post(id)
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling SmartComputerGroupsPreviewApi->v1_smart_computer_groups_id_recalculate_post: %s\n" % e)

Parameters

Name Type Description Notes
id int instance id of smart group

Return type

RecalculationResults

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Successful response -
400 smart group not found -

[Back to top] [Back to API list] [Back to Model list] [Back to README]