Skip to content

Commit

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

The following keys were added:
- schemas.GoogleChecksReportV1alphaAnalyzeUploadRequest.properties.appBinaryFileType.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 4, 2024
1 parent b94b8ec commit 57a6156
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/dyn/checks_v1alpha.media.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ <h3>Method Details</h3>
The object takes the form of:

{ # The request message for ReportService.AnalyzeUpload.
&quot;appBinaryFileType&quot;: &quot;A String&quot;, # Optional. The type of the uploaded app binary. If not provided, the server assumes APK file for Android and IPA file for iOS.
&quot;codeReferenceId&quot;: &quot;A String&quot;, # Optional. Git commit hash or changelist number associated with the upload.
}

Expand Down
18 changes: 17 additions & 1 deletion googleapiclient/discovery_cache/documents/checks.v1alpha.json
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@
}
}
},
"revision": "20231210",
"revision": "20240102",
"rootUrl": "https://checks.googleapis.com/",
"schemas": {
"CancelOperationRequest": {
Expand Down Expand Up @@ -466,6 +466,22 @@
"description": "The request message for ReportService.AnalyzeUpload.",
"id": "GoogleChecksReportV1alphaAnalyzeUploadRequest",
"properties": {
"appBinaryFileType": {
"description": "Optional. The type of the uploaded app binary. If not provided, the server assumes APK file for Android and IPA file for iOS.",
"enum": [
"APP_BINARY_FILE_TYPE_UNSPECIFIED",
"ANDROID_APK",
"ANDROID_AAB",
"IOS_IPA"
],
"enumDescriptions": [
"Not specified.",
".apk file type.",
".aab (app bundle) file type.",
".ipa file type."
],
"type": "string"
},
"codeReferenceId": {
"description": "Optional. Git commit hash or changelist number associated with the upload.",
"type": "string"
Expand Down

0 comments on commit 57a6156

Please sign in to comment.