Skip to content

Commit

Permalink
fix(cloudbilling): update the API
Browse files Browse the repository at this point in the history
#### cloudbilling:v1

The following keys were changed:
- resources.billingAccounts.methods.create.parameters.parent.description
- resources.billingAccounts.resources.subAccounts.methods.create.parameters.parent.description
- resources.organizations.resources.billingAccounts.methods.create.parameters.parent.description
- schemas.Binding.properties.role.description
  • Loading branch information
yoshi-automation authored and bcoe committed Feb 2, 2024
1 parent c1e4ab0 commit 576eded
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions discovery/cloudbilling-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"parameterOrder": [],
"parameters": {
"parent": {
"description": "Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`",
"description": "Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`",
"location": "query",
"type": "string"
}
Expand Down Expand Up @@ -416,7 +416,7 @@
],
"parameters": {
"parent": {
"description": "Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`",
"description": "Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`",
"location": "path",
"pattern": "^billingAccounts/[^/]+$",
"required": true,
Expand Down Expand Up @@ -496,7 +496,7 @@
],
"parameters": {
"parent": {
"description": "Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`",
"description": "Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`",
"location": "path",
"pattern": "^organizations/[^/]+$",
"required": true,
Expand Down Expand Up @@ -751,7 +751,7 @@
}
}
},
"revision": "20231215",
"revision": "20240126",
"rootUrl": "https://cloudbilling.googleapis.com/",
"schemas": {
"AggregationInfo": {
Expand Down Expand Up @@ -886,7 +886,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/apis/cloudbilling/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export namespace cloudbilling_v1 {
*/
members?: string[] | null;
/**
* Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
* Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).
*/
role?: string | null;
}
Expand Down Expand Up @@ -1260,7 +1260,7 @@ export namespace cloudbilling_v1 {
export interface Params$Resource$Billingaccounts$Create
extends StandardParameters {
/**
* Optional. The parent to create a billing account from. Format: - `organizations/{organization_id\}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id\}`, for example, `billingAccounts/012345-567890-ABCDEF`
* Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id\}`, for example, `billingAccounts/012345-567890-ABCDEF`
*/
parent?: string;

Expand Down Expand Up @@ -1669,7 +1669,7 @@ export namespace cloudbilling_v1 {
export interface Params$Resource$Billingaccounts$Subaccounts$Create
extends StandardParameters {
/**
* Optional. The parent to create a billing account from. Format: - `organizations/{organization_id\}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id\}`, for example, `billingAccounts/012345-567890-ABCDEF`
* Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id\}`, for example, `billingAccounts/012345-567890-ABCDEF`
*/
parent?: string;

Expand Down Expand Up @@ -1987,7 +1987,7 @@ export namespace cloudbilling_v1 {
export interface Params$Resource$Organizations$Billingaccounts$Create
extends StandardParameters {
/**
* Optional. The parent to create a billing account from. Format: - `organizations/{organization_id\}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id\}`, for example, `billingAccounts/012345-567890-ABCDEF`
* Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id\}`, for example, `billingAccounts/012345-567890-ABCDEF`
*/
parent?: string;

Expand Down

0 comments on commit 576eded

Please sign in to comment.