Search Tokens for Option Profiles

Syntax help displayed in UI for tokens. Click each token to learn more about it.

Note:

- For all the date-related tokens, the date search is evaluated only for UTC format. The actual search results might show you the date as per your time zone.

- For the range searches, remember that the QQL search tokens are case-sensitive. Hence, make sure that you enter the correct token syntax. For more information, see Range Searches.

- While using the nested QQL queries for software-related tokens using the 'not' operator and multiple values in [], the placement of 'not' is very important. Make sure to enter the correct token syntax. Otherwise, you will not get the expected results. For more information, see the Nested Queries section from the How to Search topic.

Option Profile Tokens

asset.idasset.id

Use an integer value to find option profile associated to models with the specified ID.

Example

Find option profile associated to model with given ID

asset.id: 9725

optionProfile.createdBy.usernameoptionProfile.createdBy.username

Use values within quotes or backticks to find option profiles with owner's username.

Example

Find option profiles with owner's username as quays_pp

optionProfile.createdBy.username: "quays_pp"

optionProfile.quickFiltersoptionProfile.quickFilters

Use a text value ##### to find option profiles with specified quick filters: MY_PROFILES, IN_USE, NOT_IN_USE.

Examples

Find option profile with current user as owner.

optionProfile.quickFilters: MY_PROFILES

Find option profile currently associated with any model scan.

optionProfile.quickFilters: IN_USE

Find option profiles currently not associated with any model scan.

optionProfile.quickFilters: NOT_IN_USE

optionProfile.createdDateoptionProfile.createdDate

Use a date range or specific date to find option profiles that were created on the given date or date range.

Examples

Show option profiles which were created in past 6 months.

optionProfile.createdDate:[now-6M .. now]

Show option profiles which were created on a specified date.

optionProfile.createdDate:"2020-03-20"

Show option profiles which were created after a specified date.

optionProfile.createdDate>"2020-03-20"

Show option profiles created between March 2020 to July 2021.

optionProfile.createdDate:[2020-03-01 .. 2021-7-31]

asset.nameasset.name

Use values within quotes or backticks to find option profiles associated to models with given name.

Examples

Fine option profiles associated with models that contains part of the given name.

asset.name:"Testmodel"

Fine option profiles associated with models with given name.

asset.name:`TestModel`

optionProfile.createdBy.firstNameoptionProfile.createdBy.firstName

Use values within quotes or backticks to find option profiles with owner's first name.

Example

Find option profiles with owner's first name as Chandler

optionProfile.createdBy.firstName:"Chandler"

optionProfile.createdBy.lastNameoptionProfile.createdBy.lastName

Use values within quotes or backticks to find option profiles with owner's last name.

Example

Find option profiles with owner's last name as Chandler

optionProfile.createdBy.lastName: "Bing"

optionProfile.isDefaultoptionProfile.isDefault

Use the values true | false to find option profile which is marked as default for your subscription.

Examples

Find option profile which is marked as default for your subscription

optionProfile.isDefault:true

Find option profile which is not marked as default for your subscription

optionProfile.isDefault:false

optionProfile.updatedBy.firstNameoptionProfile.updatedBy.firstName

Use values within quotes or backticks to find option profiles updated by specified user’s first name.

Example

Find option profiles that are updated by user whose first name is Chandler

optionProfile.updatedBy.firstName:"Chandler"

optionProfile.owner.usernameoptionProfile.owner.username

Use values within quotes or back ticks to find option profiles with owner's username.

Example

Find option profiles with owner's username as quays_pp

optionProfile.owner.username: "quays_pp"

optionProfile.updatedDateoptionProfile.updatedDate

Use a date range or specific date to find option profiles that were updated in the given date range.

Examples

Find option profiles that were updated in past 6 months.

optionProfile.updatedDate:[now-6M .. now]

Find option profiles that were updated on a specified date.

optionProfile.updatedDate:"2020-03-20"

Find option profiles that were updated after a specified date.

optionProfile.updatedDate>"2020-03-20"

Find option profiles that were updated between March 2020 to Dec 2020.

optionProfile.updatedDate:[2020-03-01 .. 2020-12-31]

optionProfile.tag.nameoptionProfile.tag.name

Use values within quotes or backticks to find option profiles that are associated with the specified tag(s).

Examples

Find option profiles which have tag named "Internal P1" associated with it.

optionProfile.tag.name: "Internal P1"

Find option profiles which have tag named "Dev Internal" or "Production" associated with it.

optionProfile.tag.name:["Dev Internal", "Production"]

Find option profiles which have the tag named `Target1` associated with it.

optionProfile.tag.name:`Target1`

optionProfile.owner.firstNameoptionProfile.owner.firstName

Use values within quotes or backticks to find option profiles with owner's first name.

Example

Find option profiles with owner's first name as Chandler

optionProfile.owner.firstName: "Chandler"

optionProfile.updatedBy.lastNameoptionProfile.updatedBy.lastName

Use values within quotes or backticks to find option profiles updated by specified user’s last name.

Example

Find option profiles that are updated by user whose last name is Bing

optionProfile.updatedBy.lastName:"Bing"

optionProfile.nameoptionProfile.name

Use values within quotes or backticks to find option profile with the specified name.

Examples

Fine option profile that contains part of the given name

optionProfile.name: "TestOP"

Fine option profile with the given name

optionProfile.name:`TestOP`

optionProfile.idoptionProfile.id

Use an integer value to find option profile with the specified ID.

Example

Find option profile with given ID

optionProfile.id: 7298847

optionProfile.updatedBy.usernameoptionProfile.updatedBy.username

Use values within quotes or backticks to find option profiles updated by specified username.

Example

Find option profiles that were updated by a user with username is quays_pp

optionProfile.updatedBy.username: "quays_pp"

optionProfile.owner.lastNameoptionProfile.owner.lastName

Use values within quotes or backticks to find option profiles with owner's last name.

Example

Find option profiles with owner's last name as Bing

optionProfile.owner.lastName: "Bing"

optionProfile.detectionScopeoptionProfile.detectionScope

Use a text value ##### to find option profiles with a selected detection scope: ALL, JAILBREAK, RISK_CATEGORY

Example

Find option profile with detection scope as Jailbreak Attacks

optionProfile.detectionScope:JAILBREAK