Skip to content

Latest commit

 

History

History
247 lines (159 loc) · 7.17 KB

README.md

File metadata and controls

247 lines (159 loc) · 7.17 KB

Add-CsSensorGroup

Add a Host Group to a Sensor Update policy

References

Documentation, Swagger

Parameters

-Id: The Sensor Update Policy ID

-Group: The Host Group ID

Example

PS> Add-CsSensorGroup -Id <string> -Group <string>

Disable-CsSensorPolicy

Disable Sensor Update policies

References

Swagger

Parameters

-Id: An array of one or more Sensor Update policy IDs

Example

PS> Disable-CsSensorPolicy -Id @(<string>, <string>)

Edit-CsSensorPolicy

Update Sensor Update Policies by specifying the ID of the policy and details to update

References

Documentation, Swagger

Parameters

-Resources: An array of Sensor Update policy properties

Example

PS> Edit-CsSensorPolicy -Resources @(@{ id = <string>; name = <string>; description = <string> })

Enable-CsSensorPolicy

Enable Sensor Update policies

References

Swagger

Parameters

-Id: An array of one or more Sensor Update policy IDs

Example

PS> Enable-CsSensorPolicy -Id @(<string>, <string>)

Get-CsSensorBuild

Retrieve available builds for use with Sensor Update policies

References

Swagger

Parameters

-Platform: The operating system to return builds for

Example

PS> Get-CsSensorBuild -Platform <string>

Get-CsSensorMemberId

Search for members of a Sensor Update policy in your environment

References

Swagger

Parameters

-Id: The ID of the Sensor Update policy to search for members of

-Filter: The filter expression that should be used to limit the results

-Limit: The maximum records to return [default: 5000]

-Offset: The offset to start retrieving records from [default: 0]

-All: Repeat request until all results are returned

Example

PS> Get-CsSensorMemberId -Id <string>

Get-CsSensorMemberInfo

Search for details about members of a Sensor Update policy in your environment

References

Swagger

Parameters

-Id: The ID of the Sensor Update policy to search for members of

-Filter: The filter expression that should be used to limit the results

-Limit: The maximum records to return [default: 5000]

-Offset: The offset to start retrieving records from [default: 0]

-All: Repeat request until all results are returned

Example

PS> Get-CsSensorMemberInfo -Id <string>

Get-CsSensorPolicyId

Search for Sensor Update policies in your environment

References

Swagger

Parameters

-Filter: The filter expression that should be used to limit the results

-Limit: The maximum records to return [default: 500]

-Offset: The offset to start retrieving records from [default: 0]

-All: Repeat request until all results are returned

Example

PS> Get-CsSensorPolicyId

Get-CsSensorPolicyInfo

Search for info about Sensor Update policies

References

Documentation, Swagger

Parameters

-Id: The IDs of specific Sensor Update policies to return

-Filter: The filter expression that should be used to limit the results

-Limit: The maximum records to return [default: 500]

-Offset: The offset to start retrieving records from [default: 0]

-All: Repeat request until all results are returned

Example

PS> Get-CsSensorPolicyInfo

Get-CsUninstallToken

Reveals an uninstall token for a specific host

References

Swagger

Parameters

-Id: The target Agent ID. To retrieve the bulk maintenance token use 'MAINTENANCE'

-Audit: An audit message explaining the reason for the token reveal

Example

PS> Get-CsUninstallToken -Id <string> -Audit <string>

New-CsSensorPolicy

Create Sensor Update policies by specifying details about the policy to create

References

Documentation, Swagger

Parameters

-Resources: An array of Sensor Update policy properties

Example

PS> New-CsSensorPolicy -Resources @(@{ name = <string>; platform_name = <string> })

Remove-CsSensorGroup

Remove a Host Group from a Sensor Update policy

References

Swagger

Parameters

-Id: The Sensor Update policy ID

-Group: The Host Group ID

Example

PS> Remove-CsSensorGroup -Id <string> -Group <string>

Remove-CsSensorPolicy

Delete a set of Sensor Update policies by specifying their IDs

References

Swagger

Parameters

-Id: The IDs of the Sensor Update policies to delete

Example

PS> Remove-CsSensorPolicy -Id @(<string>, <string>)

Set-CsSensorPrecedence

Sets the precedence of Sensor Update policies based on the order of IDs specified in the request

References

Documentation, Swagger

Parameters

-Platform: The operating system platform the Sensor Update policies are assigned to

-Id: An array of one or more Sensor Update policy IDs

Example

PS> Set-CsSensorPrecedence -Platform <string> -Id @(<string>, <string>)