Skip to content

Commit

Permalink
feat(gmailpostmastertools): update the API
Browse files Browse the repository at this point in the history
#### gmailpostmastertools:v1beta1
The following keys were added:
- schemas.IpReputation.properties.ipCount.description
- schemas.IpReputation.properties.ipCount.format
- schemas.IpReputation.properties.ipCount.type

The following keys were changed:
- schemas.IpReputation.properties.numIps.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Nov 30, 2020
1 parent 0529b89 commit b9b88aa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 7 additions & 2 deletions discovery/gmailpostmastertools-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
}
}
},
"revision": "20201016",
"revision": "20201124",
"rootUrl": "https://gmailpostmastertools.googleapis.com/",
"schemas": {
"DeliveryError": {
Expand Down Expand Up @@ -376,11 +376,16 @@
"description": "IP Reputation information for a set of IPs in a specific reputation category.",
"id": "IpReputation",
"properties": {
"numIps": {
"ipCount": {
"description": "Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](http://www.openspf.org/) or [DKIM](http://www.dkim.org/).",
"format": "int64",
"type": "string"
},
"numIps": {
"description": "Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](http://www.openspf.org/) or [DKIM](http://www.dkim.org/). Deprecated to be complied with ApiLinter for Quantities. Use ip_count instead.",
"format": "int64",
"type": "string"
},
"reputation": {
"description": "The reputation category this IP reputation represents.",
"enum": [
Expand Down
4 changes: 4 additions & 0 deletions src/apis/gmailpostmastertools/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ export namespace gmailpostmastertools_v1beta1 {
/**
* Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](http://www.openspf.org/) or [DKIM](http://www.dkim.org/).
*/
ipCount?: string | null;
/**
* Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](http://www.openspf.org/) or [DKIM](http://www.dkim.org/). Deprecated to be complied with ApiLinter for Quantities. Use ip_count instead.
*/
numIps?: string | null;
/**
* The reputation category this IP reputation represents.
Expand Down

0 comments on commit b9b88aa

Please sign in to comment.