Skip to content

Commit

Permalink
feat(ondemandscanning): update the API
Browse files Browse the repository at this point in the history
#### ondemandscanning:v1beta1

The following keys were added:
- schemas.PackageData.properties.unused.type

#### ondemandscanning:v1

The following keys were added:
- schemas.PackageData.properties.unused.type
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 20, 2021
1 parent f9689bb commit a3c219c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion discovery/ondemandscanning-v1.json
Expand Up @@ -339,7 +339,7 @@
}
}
},
"revision": "20210329",
"revision": "20210410",
"rootUrl": "https://ondemandscanning.googleapis.com/",
"schemas": {
"AliasContext": {
Expand Down Expand Up @@ -1119,6 +1119,9 @@
"description": "The package being analysed for vulnerabilities",
"type": "string"
},
"unused": {
"type": "string"
},
"version": {
"description": "The version of the package being analysed",
"type": "string"
Expand Down
5 changes: 4 additions & 1 deletion discovery/ondemandscanning-v1beta1.json
Expand Up @@ -339,7 +339,7 @@
}
}
},
"revision": "20210329",
"revision": "20210410",
"rootUrl": "https://ondemandscanning.googleapis.com/",
"schemas": {
"AliasContext": {
Expand Down Expand Up @@ -1119,6 +1119,9 @@
"description": "The package being analysed for vulnerabilities",
"type": "string"
},
"unused": {
"type": "string"
},
"version": {
"description": "The version of the package being analysed",
"type": "string"
Expand Down
1 change: 1 addition & 0 deletions src/apis/ondemandscanning/v1.ts
Expand Up @@ -696,6 +696,7 @@ export namespace ondemandscanning_v1 {
* The package being analysed for vulnerabilities
*/
package?: string | null;
unused?: string | null;
/**
* The version of the package being analysed
*/
Expand Down
1 change: 1 addition & 0 deletions src/apis/ondemandscanning/v1beta1.ts
Expand Up @@ -696,6 +696,7 @@ export namespace ondemandscanning_v1beta1 {
* The package being analysed for vulnerabilities
*/
package?: string | null;
unused?: string | null;
/**
* The version of the package being analysed
*/
Expand Down

0 comments on commit a3c219c

Please sign in to comment.