Skip to content

Commit fd6f9c4

Browse files
1 parent e7337ad commit fd6f9c4

File tree

4 files changed

+45
-6
lines changed

4 files changed

+45
-6
lines changed

clients/google-api-services-cloudbilling/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-cloudbilling</artifactId>
25-
<version>v1-rev20240517-2.0.0</version>
25+
<version>v1-rev20241011-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-cloudbilling:v1-rev20240517-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbilling:v1-rev20241011-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudbilling/v1/2.0.0/com/google/api/services/cloudbilling/model/BillingAccount.java

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@
3030
@SuppressWarnings("javadoc")
3131
public final class BillingAccount extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. The currency in which the billing account is billed and charged, represented as an
35+
* ISO 4217 code such as `USD`. Billing account currency is determined at the time of billing
36+
* account creation and cannot be updated subsequently, so this field should not be set on update
37+
* requests. In addition, a subaccount always matches the currency of its parent billing account,
38+
* so this field should not be set on subaccount creation requests. Clients can read this field to
39+
* determine the currency of an existing billing account.
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String currencyCode;
44+
3345
/**
3446
* The display name given to the billing account, such as `My Billing Account`. This name is
3547
* displayed in the Google Cloud Console.
@@ -75,6 +87,33 @@ public final class BillingAccount extends com.google.api.client.json.GenericJson
7587
@com.google.api.client.util.Key
7688
private java.lang.String parent;
7789

90+
/**
91+
* Optional. The currency in which the billing account is billed and charged, represented as an
92+
* ISO 4217 code such as `USD`. Billing account currency is determined at the time of billing
93+
* account creation and cannot be updated subsequently, so this field should not be set on update
94+
* requests. In addition, a subaccount always matches the currency of its parent billing account,
95+
* so this field should not be set on subaccount creation requests. Clients can read this field to
96+
* determine the currency of an existing billing account.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getCurrencyCode() {
100+
return currencyCode;
101+
}
102+
103+
/**
104+
* Optional. The currency in which the billing account is billed and charged, represented as an
105+
* ISO 4217 code such as `USD`. Billing account currency is determined at the time of billing
106+
* account creation and cannot be updated subsequently, so this field should not be set on update
107+
* requests. In addition, a subaccount always matches the currency of its parent billing account,
108+
* so this field should not be set on subaccount creation requests. Clients can read this field to
109+
* determine the currency of an existing billing account.
110+
* @param currencyCode currencyCode or {@code null} for none
111+
*/
112+
public BillingAccount setCurrencyCode(java.lang.String currencyCode) {
113+
this.currencyCode = currencyCode;
114+
return this;
115+
}
116+
78117
/**
79118
* The display name given to the billing account, such as `My Billing Account`. This name is
80119
* displayed in the Google Cloud Console.

clients/google-api-services-cloudbilling/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-cloudbilling</artifactId>
11-
<version>v1-rev20240517-2.0.0</version>
12-
<name>Cloud Billing API v1-rev20240517-2.0.0</name>
11+
<version>v1-rev20241011-2.0.0</version>
12+
<name>Cloud Billing API v1-rev20241011-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudbilling/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-cloudbilling</artifactId>
25-
<version>v1-rev20240517-2.0.0</version>
25+
<version>v1-rev20241011-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-cloudbilling:v1-rev20240517-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbilling:v1-rev20241011-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)