Skip to content

Commit

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

The following keys were added:
- schemas.GoogleAnalyticsAdminV1alphaAccessQuota.properties.tokensPerProjectPerHour.$ref
- schemas.GoogleAnalyticsAdminV1alphaAccessQuota.properties.tokensPerProjectPerHour.description

The following keys were changed:
- schemas.GoogleAnalyticsAdminV1alphaAccessQuota.properties.tokensPerHour.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 21, 2022
1 parent 091cafd commit 7fc7f3b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions discovery/analyticsadmin-v1alpha.json
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@
}
}
},
"revision": "20220817",
"revision": "20220920",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
Expand Down Expand Up @@ -3089,7 +3089,11 @@
},
"tokensPerHour": {
"$ref": "GoogleAnalyticsAdminV1alphaAccessQuotaStatus",
"description": "Properties can use 50,000 tokens per hour. An API request consumes a single number of tokens, and that number is deducted from both the hourly and daily quotas."
"description": "Properties can use 50,000 tokens per hour. An API request consumes a single number of tokens, and that number is deducted from all of the hourly, daily, and per project hourly quotas."
},
"tokensPerProjectPerHour": {
"$ref": "GoogleAnalyticsAdminV1alphaAccessQuotaStatus",
"description": "Properties can use up to 25% of their tokens per project per hour. This amounts to Analytics 360 Properties can use 12,500 tokens per project per hour. An API request consumes a single number of tokens, and that number is deducted from all of the hourly, daily, and per project hourly quotas."
}
},
"type": "object"
Expand Down
2 changes: 1 addition & 1 deletion src/apis/analyticsadmin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"webpack": "webpack"
},
"dependencies": {
"googleapis-common": "^5.0.1"
"googleapis-common": "^6.0.3"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.10",
Expand Down
6 changes: 5 additions & 1 deletion src/apis/analyticsadmin/v1alpha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,13 @@ export namespace analyticsadmin_v1alpha {
*/
tokensPerDay?: Schema$GoogleAnalyticsAdminV1alphaAccessQuotaStatus;
/**
* Properties can use 50,000 tokens per hour. An API request consumes a single number of tokens, and that number is deducted from both the hourly and daily quotas.
* Properties can use 50,000 tokens per hour. An API request consumes a single number of tokens, and that number is deducted from all of the hourly, daily, and per project hourly quotas.
*/
tokensPerHour?: Schema$GoogleAnalyticsAdminV1alphaAccessQuotaStatus;
/**
* Properties can use up to 25% of their tokens per project per hour. This amounts to Analytics 360 Properties can use 12,500 tokens per project per hour. An API request consumes a single number of tokens, and that number is deducted from all of the hourly, daily, and per project hourly quotas.
*/
tokensPerProjectPerHour?: Schema$GoogleAnalyticsAdminV1alphaAccessQuotaStatus;
}
/**
* Current state for a particular quota group.
Expand Down

0 comments on commit 7fc7f3b

Please sign in to comment.