Skip to content

Commit

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

The following keys were added:
- schemas.GoogleTypeDate.description

The following keys were changed:
- resources.billingAccounts.resources.budgets.methods.create.description

#### billingbudgets:v1

The following keys were added:
- schemas.GoogleTypeDate.description
  • Loading branch information
yoshi-automation authored and bcoe committed Mar 8, 2022
1 parent 22f0a06 commit b80deb1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion discovery/billingbudgets-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
}
}
},
"revision": "20220129",
"revision": "20220305",
"rootUrl": "https://billingbudgets.googleapis.com/",
"schemas": {
"GoogleCloudBillingBudgetsV1Budget": {
Expand Down Expand Up @@ -506,6 +506,7 @@
"type": "object"
},
"GoogleTypeDate": {
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp",
"id": "GoogleTypeDate",
"properties": {
"day": {
Expand Down
5 changes: 3 additions & 2 deletions discovery/billingbudgets-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"budgets": {
"methods": {
"create": {
"description": "Creates a new budget. See Quotas and limits for more information on the limits of the number of budgets you can create.",
"description": "Creates a new budget. See [Quotas and limits](https://cloud.google.com/billing/quotas) for more information on the limits of the number of budgets you can create.",
"flatPath": "v1beta1/billingAccounts/{billingAccountsId}/budgets",
"httpMethod": "POST",
"id": "billingbudgets.billingAccounts.budgets.create",
Expand Down Expand Up @@ -264,7 +264,7 @@
}
}
},
"revision": "20220129",
"revision": "20220305",
"rootUrl": "https://billingbudgets.googleapis.com/",
"schemas": {
"GoogleCloudBillingBudgetsV1beta1AllUpdatesRule": {
Expand Down Expand Up @@ -527,6 +527,7 @@
"type": "object"
},
"GoogleTypeDate": {
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp",
"id": "GoogleTypeDate",
"properties": {
"day": {
Expand Down
3 changes: 3 additions & 0 deletions src/apis/billingbudgets/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,9 @@ export namespace billingbudgets_v1 {
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \} The JSON representation for `Empty` is empty JSON object `{\}`.
*/
export interface Schema$GoogleProtobufEmpty {}
/**
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
*/
export interface Schema$GoogleTypeDate {
/**
* Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
Expand Down
5 changes: 4 additions & 1 deletion src/apis/billingbudgets/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,9 @@ export namespace billingbudgets_v1beta1 {
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \} The JSON representation for `Empty` is empty JSON object `{\}`.
*/
export interface Schema$GoogleProtobufEmpty {}
/**
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
*/
export interface Schema$GoogleTypeDate {
/**
* Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
Expand Down Expand Up @@ -346,7 +349,7 @@ export namespace billingbudgets_v1beta1 {
}

/**
* Creates a new budget. See Quotas and limits for more information on the limits of the number of budgets you can create.
* Creates a new budget. See [Quotas and limits](https://cloud.google.com/billing/quotas) for more information on the limits of the number of budgets you can create.
* @example
* ```js
* // Before running the sample:
Expand Down

0 comments on commit b80deb1

Please sign in to comment.