Skip to content

Commit 37b271e

Browse files
feat(all): auto-regenerate discovery clients (#2839)
1 parent 343ae0e commit 37b271e

34 files changed

+3106
-1768
lines changed

chromemanagement/v1/chromemanagement-api.json

Lines changed: 98 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -591,12 +591,12 @@
591591
"type": "string"
592592
},
593593
"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",
595595
"location": "query",
596596
"type": "string"
597597
},
598598
"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",
600600
"location": "query",
601601
"type": "string"
602602
},
@@ -1172,7 +1172,7 @@
11721172
}
11731173
}
11741174
},
1175-
"revision": "20241003",
1175+
"revision": "20241022",
11761176
"rootUrl": "https://chromemanagement.googleapis.com/",
11771177
"schemas": {
11781178
"GoogleChromeManagementV1AndroidAppInfo": {
@@ -2849,6 +2849,11 @@
28492849
},
28502850
"readOnly": true,
28512851
"type": "array"
2852+
},
2853+
"riskAssessment": {
2854+
"$ref": "GoogleChromeManagementV1RiskAssessmentData",
2855+
"description": "Output only. If available, the risk assessment data about this extension.",
2856+
"readOnly": true
28522857
}
28532858
},
28542859
"type": "object"
@@ -3419,6 +3424,96 @@
34193424
},
34203425
"type": "object"
34213426
},
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+
},
34223517
"GoogleChromeManagementV1RuntimeCountersReport": {
34233518
"description": "Runtime counters retrieved from CPU. Currently the runtime counters telemetry is only supported by Intel vPro PSR on Gen 14+.",
34243519
"id": "GoogleChromeManagementV1RuntimeCountersReport",

chromemanagement/v1/chromemanagement-gen.go

Lines changed: 106 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)