Skip to content

Commit

Permalink
feat(cloudbilling): update the API
Browse files Browse the repository at this point in the history
#### cloudbilling:v1
The following keys were added:
- schemas.BillingAccount.properties.name.readOnly

The following keys were changed:
- schemas.BillingAccount.properties.name.description
  • Loading branch information
JustinBeckwith committed Oct 5, 2020
1 parent 73b1830 commit 30b19a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions discovery/cloudbilling-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
}
}
},
"revision": "20200821",
"revision": "20201003",
"rootUrl": "https://cloudbilling.googleapis.com/",
"schemas": {
"AggregationInfo": {
Expand Down Expand Up @@ -623,7 +623,8 @@
"type": "string"
},
"name": {
"description": "The resource name of the billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF` would be the resource name for billing account `012345-567890-ABCDEF`.",
"description": "Output only. The resource name of the billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF` would be the resource name for billing account `012345-567890-ABCDEF`.",
"readOnly": true,
"type": "string"
},
"open": {
Expand Down
2 changes: 1 addition & 1 deletion src/apis/cloudbilling/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export namespace cloudbilling_v1 {
*/
masterBillingAccount?: string | null;
/**
* The resource name of the billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF` would be the resource name for billing account `012345-567890-ABCDEF`.
* Output only. The resource name of the billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, `billingAccounts/012345-567890-ABCDEF` would be the resource name for billing account `012345-567890-ABCDEF`.
*/
name?: string | null;
/**
Expand Down

0 comments on commit 30b19a7

Please sign in to comment.