|
591 | 591 | "type": "string"
|
592 | 592 | },
|
593 | 593 | "filter": {
|
594 |
| - "description": "Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Supported filter fields: * app_name * app_type * install_type * number_of_permissions * total_install_count * latest_profile_active_date * permission_name * app_id * manifest_versions", |
| 594 | + "description": "Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Supported filter fields: * app_name * app_type * install_type * number_of_permissions * total_install_count * latest_profile_active_date * permission_name * app_id * manifest_versions * risk_score", |
595 | 595 | "location": "query",
|
596 | 596 | "type": "string"
|
597 | 597 | },
|
598 | 598 | "orderBy": {
|
599 |
| - "description": "Field used to order results. Supported order by fields: * app_name * app_type * install_type * number_of_permissions * total_install_count * app_id * manifest_versions", |
| 599 | + "description": "Field used to order results. Supported order by fields: * app_name * app_type * install_type * number_of_permissions * total_install_count * app_id * manifest_versions * risk_score", |
600 | 600 | "location": "query",
|
601 | 601 | "type": "string"
|
602 | 602 | },
|
|
1172 | 1172 | }
|
1173 | 1173 | }
|
1174 | 1174 | },
|
1175 |
| - "revision": "20241003", |
| 1175 | + "revision": "20241022", |
1176 | 1176 | "rootUrl": "https://chromemanagement.googleapis.com/",
|
1177 | 1177 | "schemas": {
|
1178 | 1178 | "GoogleChromeManagementV1AndroidAppInfo": {
|
|
2849 | 2849 | },
|
2850 | 2850 | "readOnly": true,
|
2851 | 2851 | "type": "array"
|
| 2852 | + }, |
| 2853 | + "riskAssessment": { |
| 2854 | + "$ref": "GoogleChromeManagementV1RiskAssessmentData", |
| 2855 | + "description": "Output only. If available, the risk assessment data about this extension.", |
| 2856 | + "readOnly": true |
2852 | 2857 | }
|
2853 | 2858 | },
|
2854 | 2859 | "type": "object"
|
|
3419 | 3424 | },
|
3420 | 3425 | "type": "object"
|
3421 | 3426 | },
|
| 3427 | + "GoogleChromeManagementV1RiskAssessment": { |
| 3428 | + "description": "Risk assessment for a Chrome extension.", |
| 3429 | + "id": "GoogleChromeManagementV1RiskAssessment", |
| 3430 | + "properties": { |
| 3431 | + "assessment": { |
| 3432 | + "description": "Risk assessment for the extension. Currently, this is a numerical value, and higher values denote higher risk.", |
| 3433 | + "type": "string" |
| 3434 | + }, |
| 3435 | + "detailsUrl": { |
| 3436 | + "description": "A URL that a user can navigate to for more information about the risk assessment.", |
| 3437 | + "type": "string" |
| 3438 | + }, |
| 3439 | + "version": { |
| 3440 | + "description": "The version of the extension that this assessment applies to.", |
| 3441 | + "type": "string" |
| 3442 | + } |
| 3443 | + }, |
| 3444 | + "type": "object" |
| 3445 | + }, |
| 3446 | + "GoogleChromeManagementV1RiskAssessmentData": { |
| 3447 | + "description": "Risk assessment data about an extension/app.", |
| 3448 | + "id": "GoogleChromeManagementV1RiskAssessmentData", |
| 3449 | + "properties": { |
| 3450 | + "entries": { |
| 3451 | + "description": "Individual risk assessments.", |
| 3452 | + "items": { |
| 3453 | + "$ref": "GoogleChromeManagementV1RiskAssessmentEntry" |
| 3454 | + }, |
| 3455 | + "type": "array" |
| 3456 | + }, |
| 3457 | + "overallRiskLevel": { |
| 3458 | + "description": "Overall assessed risk level across all entries. This will be the highest risk level from all entries.", |
| 3459 | + "enum": [ |
| 3460 | + "RISK_LEVEL_UNSPECIFIED", |
| 3461 | + "RISK_LEVEL_LOW", |
| 3462 | + "RISK_LEVEL_MEDIUM", |
| 3463 | + "RISK_LEVEL_HIGH" |
| 3464 | + ], |
| 3465 | + "enumDescriptions": [ |
| 3466 | + "Risk level not specified.", |
| 3467 | + "Extension that represents a low risk.", |
| 3468 | + "Extension that represents a medium risk.", |
| 3469 | + "Extension that represents a high risk." |
| 3470 | + ], |
| 3471 | + "type": "string" |
| 3472 | + } |
| 3473 | + }, |
| 3474 | + "type": "object" |
| 3475 | + }, |
| 3476 | + "GoogleChromeManagementV1RiskAssessmentEntry": { |
| 3477 | + "description": "One risk assessment entry.", |
| 3478 | + "id": "GoogleChromeManagementV1RiskAssessmentEntry", |
| 3479 | + "properties": { |
| 3480 | + "provider": { |
| 3481 | + "description": "The risk assessment provider from which this entry comes from.", |
| 3482 | + "enum": [ |
| 3483 | + "RISK_ASSESSMENT_PROVIDER_UNSPECIFIED", |
| 3484 | + "RISK_ASSESSMENT_PROVIDER_CRXCAVATOR", |
| 3485 | + "RISK_ASSESSMENT_PROVIDER_SPIN_AI" |
| 3486 | + ], |
| 3487 | + "enumDescriptions": [ |
| 3488 | + "Default value when no provider is specified.", |
| 3489 | + "CRXcavator.", |
| 3490 | + "Spin.Ai." |
| 3491 | + ], |
| 3492 | + "type": "string" |
| 3493 | + }, |
| 3494 | + "riskAssessment": { |
| 3495 | + "$ref": "GoogleChromeManagementV1RiskAssessment", |
| 3496 | + "description": "The details of the provider's risk assessment." |
| 3497 | + }, |
| 3498 | + "riskLevel": { |
| 3499 | + "description": "The bucketed risk level for the risk assessment.", |
| 3500 | + "enum": [ |
| 3501 | + "RISK_LEVEL_UNSPECIFIED", |
| 3502 | + "RISK_LEVEL_LOW", |
| 3503 | + "RISK_LEVEL_MEDIUM", |
| 3504 | + "RISK_LEVEL_HIGH" |
| 3505 | + ], |
| 3506 | + "enumDescriptions": [ |
| 3507 | + "Risk level not specified.", |
| 3508 | + "Extension that represents a low risk.", |
| 3509 | + "Extension that represents a medium risk.", |
| 3510 | + "Extension that represents a high risk." |
| 3511 | + ], |
| 3512 | + "type": "string" |
| 3513 | + } |
| 3514 | + }, |
| 3515 | + "type": "object" |
| 3516 | + }, |
3422 | 3517 | "GoogleChromeManagementV1RuntimeCountersReport": {
|
3423 | 3518 | "description": "Runtime counters retrieved from CPU. Currently the runtime counters telemetry is only supported by Intel vPro PSR on Gen 14+.",
|
3424 | 3519 | "id": "GoogleChromeManagementV1RuntimeCountersReport",
|
|
0 commit comments