Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#21795 API design #22450

Closed
wants to merge 12 commits into from
3 changes: 2 additions & 1 deletion docs/Configuration/yaml-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ controls:
enable: true
mode: voluntary
webhook_url: https://example.org/webhook_handler
windows_migration_enabled: true # Available in Fleet Premium
# paths are relative to default.yml or teams/team-name.yml
```

Expand Down Expand Up @@ -309,7 +310,7 @@ The `macos_migration` section lets you control the [end user migration workflow]
- `mode` specifies whether the end user initiates migration (`voluntary`) or they're nudged every 15-20 minutes to migrate (`forced`) (default: `""`).
- `webhook_url` is the URL that Fleet sends a webhook to when the end user selects **Start**. Receive this webhook using your automation tool (ex. Tines) to unenroll your end users from your old MDM solution.

Can only be configure for all teams (`default.yml`).
Can only be configured for all teams (`default.yml`).

### software

Expand Down
8 changes: 6 additions & 2 deletions docs/REST API/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,7 @@ None.
"mode": "voluntary",
"webhook_url": "https://webhook.example.com"
},
"windows_migration_enabled": false,
"macos_setup": {
"bootstrap_package": "",
"enable_end_user_authentication": false,
Expand Down Expand Up @@ -1234,6 +1235,7 @@ Modifies the Fleet's configuration with the supplied information.
"mode": "voluntary",
"webhook_url": "https://webhook.example.com"
},
"windows_migration_enabled": false,
"macos_setup": {
"bootstrap_package": "",
"enable_end_user_authentication": false,
Expand Down Expand Up @@ -1711,6 +1713,7 @@ _Available in Fleet Premium._
| ipados_updates | object | See [`mdm.ipados_updates`](#mdm-ipados-updates). |
| windows_updates | object | See [`mdm.window_updates`](#mdm-windows-updates). |
| macos_migration | object | See [`mdm.macos_migration`](#mdm-macos-migration). |
| windows_migration_enabled | boolean | Whether to enable automatic migration via fleetd for devices migrating from your old MDM solution. |
| macos_setup | object | See [`mdm.macos_setup`](#mdm-macos-setup). |
| macos_settings | object | See [`mdm.macos_settings`](#mdm-macos-settings). |
| windows_settings | object | See [`mdm.windows_settings`](#mdm-windows-settings). |
Expand Down Expand Up @@ -1862,6 +1865,7 @@ _Available in Fleet Premium._
"mode": "voluntary",
"webhook_url": "https://webhook.example.com"
},
"windows_migration_enabled": false,
"macos_setup": {
"bootstrap_package": "",
"enable_end_user_authentication": false,
Expand Down Expand Up @@ -4145,7 +4149,7 @@ A `team_id` of `0` returns the statistics for hosts that are not part of any tea

Resends a configuration profile for the specified host.

`POST /api/v1/fleet/hosts/:id/configuration_profiles/resend/:profile_uuid`
`POST /api/v1/fleet/hosts/:id/configuration_profiles/:profile_uuid/resend`

#### Parameters

Expand All @@ -4156,7 +4160,7 @@ Resends a configuration profile for the specified host.

#### Example

`POST /api/v1/fleet/hosts/233/configuration_profiles/resend/fc14a20-84a2-42d8-9257-a425f62bb54d`
`POST /api/v1/fleet/hosts/233/configuration_profiles/fc14a20-84a2-42d8-9257-a425f62bb54d/resend`

##### Default response

Expand Down
2 changes: 1 addition & 1 deletion handbook/company/pricing-features-table.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@
# ║╣ ║║║╠╣ ║ ║╠╦╝║ ║╣ ║║║╚═╗╠╩╗ ║╣ ║║║║ ╠╦╝╚╦╝╠═╝ ║ ║║ ║║║║
# ╚═╝╝╚╝╚ ╚═╝╩╚═╚═╝╚═╝ ═╩╝╩╚═╝╩ ╩ ╚═╝╝╚╝╚═╝╩╚═ ╩ ╩ ╩ ╩╚═╝╝╚╝
- industryName: Enforce disk encryption
description: Encrypt system drives on macOS and Windows computers, manage escrowed encryption keys, and report on disk encryption status (FileVault, BitLocker).
description: Encrypt system drives on macOS, Windows, Ubuntu Linux and Fedora Linux computers, manage escrowed encryption keys, and report on disk encryption status (FileVault, BitLocker).
documentationUrl: https://fleetdm.com/docs/using-fleet/mdm-disk-encryption
friendlyName: Ensure hard disks are encrypted
productCategories: [Device management]
Expand Down
Loading