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

[API design] Create policies automatically for Fleet-maintained apps #22609

Closed
wants to merge 16 commits into from
Closed
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions docs/REST API/rest-api.md
marko-lisica marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -8881,7 +8881,9 @@ Get a list of all software.
"software_package": {
"name": "FirefoxInsall.pkg",
"version": "125.6",
"self_service": true
"self_service": true,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the final item in an object typically doesn't have the trailing comma. It was more correct before.

marko-lisica marked this conversation as resolved.
Show resolved Hide resolved
"automatic_install": true,
marko-lisica marked this conversation as resolved.
Show resolved Hide resolved
"fleet_maintained": false
marko-lisica marked this conversation as resolved.
Show resolved Hide resolved
},
"app_store_app": null,
"versions_count": 3,
Expand Down Expand Up @@ -9139,8 +9141,8 @@ Returns information about the specified software. By default, `versions` are sor
{
"software_title": {
"id": 12,
"name": "Firefox.app",
"bundle_identifier": "org.mozilla.firefox",
"name": "Falcon.app",
"bundle_identifier": "crowdstrike.falcon.Agent",
"software_package": {
"name": "FalconSensor-6.44.pkg",
"version": "6.44",
Expand All @@ -9152,6 +9154,8 @@ Returns information about the specified software. By default, `versions` are sor
"post_install_script": "sudo /Applications/Falcon.app/Contents/Resources/falconctl license 0123456789ABCDEFGHIJKLMNOPQRSTUV-WX",
"uninstall_script": "/Library/CS/falconctl uninstall",
"self_service": true,
"automatic_install_policy_id": 343,
"fleet_maintained": true,
marko-lisica marked this conversation as resolved.
Show resolved Hide resolved
"status": {
"installed": 3,
"pending_install": 1,
Expand Down
Loading