Skip to content

Commit

Permalink
feat(chromemanagement): update the api
Browse files Browse the repository at this point in the history
#### chromemanagement:v1

The following keys were added:
- schemas.GoogleChromeManagementV1InstalledApp.properties.riskAssessment (Total Keys: 2)
- schemas.GoogleChromeManagementV1RiskAssessment (Total Keys: 14)
  • Loading branch information
yoshi-automation committed Oct 29, 2024
1 parent 846835a commit 2615f4a
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 5 deletions.
18 changes: 16 additions & 2 deletions docs/dyn/chromemanagement_v1.customers.reports.html
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ <h3>Method Details</h3>

Args:
customer: string, Required. Customer id or &quot;my_customer&quot; to use the customer associated to the account making the request. (required)
filter: string, 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
orderBy: string, 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
filter: string, 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
orderBy: string, 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
orgUnitId: string, The ID of the organizational unit.
pageSize: integer, Maximum number of results to return. Maximum and default are 100.
pageToken: string, Token to specify the page of the request to be returned.
Expand Down Expand Up @@ -369,6 +369,20 @@ <h3>Method Details</h3>
&quot;permissions&quot;: [ # Output only. Permissions of the installed app.
&quot;A String&quot;,
],
&quot;riskAssessment&quot;: { # Risk assessment data about an extension/app. # Output only. If available, the risk assessment data about this extension.
&quot;entries&quot;: [ # Individual risk assessments.
{ # One risk assessment entry.
&quot;provider&quot;: &quot;A String&quot;, # The risk assessment provider from which this entry comes from.
&quot;riskAssessment&quot;: { # Risk assessment for a Chrome extension. # The details of the provider&#x27;s risk assessment.
&quot;assessment&quot;: &quot;A String&quot;, # Risk assessment for the extension. Currently, this is a numerical value, and its interpretation is specific to each risk assessment provider.
&quot;detailsUrl&quot;: &quot;A String&quot;, # A URL that a user can navigate to for more information about the risk assessment.
&quot;version&quot;: &quot;A String&quot;, # The version of the extension that this assessment applies to.
},
&quot;riskLevel&quot;: &quot;A String&quot;, # The bucketed risk level for the risk assessment.
},
],
&quot;overallRiskLevel&quot;: &quot;A String&quot;, # Overall assessed risk level across all entries. This will be the highest risk level from all entries.
},
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # Token to specify the next page of the request.
Expand Down
101 changes: 98 additions & 3 deletions googleapiclient/discovery_cache/documents/chromemanagement.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,12 +591,12 @@
"type": "string"
},
"filter": {
"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",
"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",
"location": "query",
"type": "string"
},
"orderBy": {
"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",
"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",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1172,7 +1172,7 @@
}
}
},
"revision": "20241003",
"revision": "20241023",
"rootUrl": "https://chromemanagement.googleapis.com/",
"schemas": {
"GoogleChromeManagementV1AndroidAppInfo": {
Expand Down Expand Up @@ -2849,6 +2849,11 @@
},
"readOnly": true,
"type": "array"
},
"riskAssessment": {
"$ref": "GoogleChromeManagementV1RiskAssessmentData",
"description": "Output only. If available, the risk assessment data about this extension.",
"readOnly": true
}
},
"type": "object"
Expand Down Expand Up @@ -3419,6 +3424,96 @@
},
"type": "object"
},
"GoogleChromeManagementV1RiskAssessment": {
"description": "Risk assessment for a Chrome extension.",
"id": "GoogleChromeManagementV1RiskAssessment",
"properties": {
"assessment": {
"description": "Risk assessment for the extension. Currently, this is a numerical value, and its interpretation is specific to each risk assessment provider.",
"type": "string"
},
"detailsUrl": {
"description": "A URL that a user can navigate to for more information about the risk assessment.",
"type": "string"
},
"version": {
"description": "The version of the extension that this assessment applies to.",
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementV1RiskAssessmentData": {
"description": "Risk assessment data about an extension/app.",
"id": "GoogleChromeManagementV1RiskAssessmentData",
"properties": {
"entries": {
"description": "Individual risk assessments.",
"items": {
"$ref": "GoogleChromeManagementV1RiskAssessmentEntry"
},
"type": "array"
},
"overallRiskLevel": {
"description": "Overall assessed risk level across all entries. This will be the highest risk level from all entries.",
"enum": [
"RISK_LEVEL_UNSPECIFIED",
"RISK_LEVEL_LOW",
"RISK_LEVEL_MEDIUM",
"RISK_LEVEL_HIGH"
],
"enumDescriptions": [
"Risk level not specified.",
"Extension that represents a low risk.",
"Extension that represents a medium risk.",
"Extension that represents a high risk."
],
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementV1RiskAssessmentEntry": {
"description": "One risk assessment entry.",
"id": "GoogleChromeManagementV1RiskAssessmentEntry",
"properties": {
"provider": {
"description": "The risk assessment provider from which this entry comes from.",
"enum": [
"RISK_ASSESSMENT_PROVIDER_UNSPECIFIED",
"RISK_ASSESSMENT_PROVIDER_CRXCAVATOR",
"RISK_ASSESSMENT_PROVIDER_SPIN_AI"
],
"enumDescriptions": [
"Default value when no provider is specified.",
"CRXcavator.",
"Spin.Ai."
],
"type": "string"
},
"riskAssessment": {
"$ref": "GoogleChromeManagementV1RiskAssessment",
"description": "The details of the provider's risk assessment."
},
"riskLevel": {
"description": "The bucketed risk level for the risk assessment.",
"enum": [
"RISK_LEVEL_UNSPECIFIED",
"RISK_LEVEL_LOW",
"RISK_LEVEL_MEDIUM",
"RISK_LEVEL_HIGH"
],
"enumDescriptions": [
"Risk level not specified.",
"Extension that represents a low risk.",
"Extension that represents a medium risk.",
"Extension that represents a high risk."
],
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementV1RuntimeCountersReport": {
"description": "Runtime counters retrieved from CPU. Currently the runtime counters telemetry is only supported by Intel vPro PSR on Gen 14+.",
"id": "GoogleChromeManagementV1RuntimeCountersReport",
Expand Down

0 comments on commit 2615f4a

Please sign in to comment.