mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
Docs: update links (#16434)
- Update links for deprecated API endpoints so that they link to the before they were deprecated
This commit is contained in:
parent
f3df2394e6
commit
1022282c15
@ -4120,7 +4120,7 @@ These API endpoints are used to automate MDM features in Fleet. Read more about
|
|||||||
|
|
||||||
### Add custom OS setting (configuration profile)
|
### Add custom OS setting (configuration profile)
|
||||||
|
|
||||||
> [Add custom macOS setting](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#add-custom-macos-setting-configuration-profile) (`POST /api/v1/fleet/mdm/apple/profiles`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
> [Add custom macOS setting](https://github.com/fleetdm/fleet/blob/fleet-v4.40.0/docs/REST%20API/rest-api.md#add-custom-macos-setting-configuration-profile) (`POST /api/v1/fleet/mdm/apple/profiles`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
||||||
|
|
||||||
Add a configuration profile to enforce custom settings on macOS and Windows hosts.
|
Add a configuration profile to enforce custom settings on macOS and Windows hosts.
|
||||||
|
|
||||||
@ -4198,7 +4198,7 @@ of duplicate payload display name or duplicate payload identifier (macOS profile
|
|||||||
|
|
||||||
### List custom OS settings (configuration profiles)
|
### List custom OS settings (configuration profiles)
|
||||||
|
|
||||||
> [List custom macOS setting](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#list-custom-macos-settings-configuration-profiles) (`GET /api/v1/fleet/mdm/apple/profiles`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
> [List custom macOS setting](https://github.com/fleetdm/fleet/blob/fleet-v4.40.0/docs/REST%20API/rest-api.md#list-custom-macos-settings-configuration-profiles) (`GET /api/v1/fleet/mdm/apple/profiles`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
||||||
|
|
||||||
Get a list of the configuration profiles in Fleet.
|
Get a list of the configuration profiles in Fleet.
|
||||||
|
|
||||||
@ -4258,7 +4258,7 @@ List all configuration profiles for macOS and Windows hosts enrolled to Fleet's
|
|||||||
|
|
||||||
### Get or download custom OS setting (configuration profile)
|
### Get or download custom OS setting (configuration profile)
|
||||||
|
|
||||||
> [Download custom macOS setting](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#download-custom-macos-setting-configuration-profile) (`GET /api/v1/fleet/mdm/apple/profiles/:profile_id`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the API endpoint below instead.
|
> [Download custom macOS setting](https://github.com/fleetdm/fleet/blob/fleet-v4.40.0/docs/REST%20API/rest-api.md#download-custom-macos-setting-configuration-profile) (`GET /api/v1/fleet/mdm/apple/profiles/:profile_id`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the API endpoint below instead.
|
||||||
|
|
||||||
`GET /api/v1/fleet/mdm/profiles/:profile_uuid`
|
`GET /api/v1/fleet/mdm/profiles/:profile_uuid`
|
||||||
|
|
||||||
@ -4334,7 +4334,7 @@ solely on the response status code returned by this endpoint.
|
|||||||
|
|
||||||
### Delete custom OS setting (configuration profile)
|
### Delete custom OS setting (configuration profile)
|
||||||
|
|
||||||
> [Delete custom macOS setting](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#delete-custom-macos-setting-configuration-profile) (`DELETE /api/v1/fleet/mdm/apple/profiles/:profile_id`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
> [Delete custom macOS setting](https://github.com/fleetdm/fleet/blob/fleet-v4.40.0/docs/REST%20API/rest-api.md#delete-custom-macos-setting-configuration-profile) (`DELETE /api/v1/fleet/mdm/apple/profiles/:profile_id`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
||||||
|
|
||||||
`DELETE /api/v1/fleet/mdm/profiles/:profile_uuid`
|
`DELETE /api/v1/fleet/mdm/profiles/:profile_uuid`
|
||||||
|
|
||||||
@ -4412,7 +4412,7 @@ Get aggregate disk encryption status counts of macOS and Windows hosts enrolled
|
|||||||
|
|
||||||
### Get OS settings status
|
### Get OS settings status
|
||||||
|
|
||||||
> [Get macOS settings statistics](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#get-macos-settings-statistics) (`GET /api/v1/fleet/mdm/apple/profiles/summary`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
> [Get macOS settings statistics](https://github.com/fleetdm/fleet/blob/fleet-v4.40.0/docs/REST%20API/rest-api.md#get-macos-settings-statistics) (`GET /api/v1/fleet/mdm/apple/profiles/summary`) API endpoint is deprecated as of Fleet 4.41. It is maintained for backwards compatibility. Please use the below API endpoint instead.
|
||||||
|
|
||||||
Get aggregate status counts of all OS settings (configuration profiles and disk encryption) enforced on hosts.
|
Get aggregate status counts of all OS settings (configuration profiles and disk encryption) enforced on hosts.
|
||||||
|
|
||||||
@ -4448,7 +4448,7 @@ Get aggregate status counts of profiles for to macOS and Windows hosts that are
|
|||||||
|
|
||||||
### Run custom MDM command
|
### Run custom MDM command
|
||||||
|
|
||||||
> `POST /api/v1/fleet/mdm/apple/enqueue` API endpoint is deprecated as of Fleet 4.40. It is maintained for backward compatibility. Please use the new API endpoint below. See old API endpoint docs [here](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#run-custom-mdm-command).
|
> `POST /api/v1/fleet/mdm/apple/enqueue` API endpoint is deprecated as of Fleet 4.40. It is maintained for backward compatibility. Please use the new API endpoint below. See old API endpoint docs [here](https://github.com/fleetdm/fleet/blob/fleet-v4.39.0/docs/REST%20API/rest-api.md#run-custom-mdm-command).
|
||||||
|
|
||||||
This endpoint tells Fleet to run a custom MDM command, on the targeted macOS or Windows hosts, the next time they come online.
|
This endpoint tells Fleet to run a custom MDM command, on the targeted macOS or Windows hosts, the next time they come online.
|
||||||
|
|
||||||
@ -4480,7 +4480,7 @@ Note that the `EraseDevice` and `DeviceLock` commands are _available in Fleet Pr
|
|||||||
|
|
||||||
### Get custom MDM command results
|
### Get custom MDM command results
|
||||||
|
|
||||||
> `GET /api/v1/fleet/mdm/apple/commandresults` API endpoint is deprecated as of Fleet 4.40. It is maintained for backward compatibility. Please use the new API endpoint below. See old API endpoint docs [here](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#get-custom-mdm-command-results).
|
> `GET /api/v1/fleet/mdm/apple/commandresults` API endpoint is deprecated as of Fleet 4.40. It is maintained for backward compatibility. Please use the new API endpoint below. See old API endpoint docs [here](https://github.com/fleetdm/fleet/blob/fleet-v4.39.0/docs/REST%20API/rest-api.md#get-custom-mdm-command-results).
|
||||||
|
|
||||||
This endpoint returns the results for a specific custom MDM command.
|
This endpoint returns the results for a specific custom MDM command.
|
||||||
|
|
||||||
@ -4520,7 +4520,7 @@ This endpoint returns the results for a specific custom MDM command.
|
|||||||
|
|
||||||
### List custom MDM commands
|
### List custom MDM commands
|
||||||
|
|
||||||
> `GET /api/v1/fleet/mdm/apple/commands` API endpoint is deprecated as of Fleet 4.40. It is maintained for backward compatibility. Please use the new API endpoint below. See old API endpoint docs [here](https://github.com/fleetdm/fleet/blob/ee02782eaf84c121256d73abc20b949d31bf2e57/docs/REST%20API/rest-api.md#list-custom-mdm-commands).
|
> `GET /api/v1/fleet/mdm/apple/commands` API endpoint is deprecated as of Fleet 4.40. It is maintained for backward compatibility. Please use the new API endpoint below. See old API endpoint docs [here](https://github.com/fleetdm/fleet/blob/fleet-v4.39.0/docs/REST%20API/rest-api.md#list-custom-mdm-commands).
|
||||||
|
|
||||||
This endpoint returns the list of custom MDM commands that have been executed.
|
This endpoint returns the list of custom MDM commands that have been executed.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user