Skip to content

Commit c952bcd

Browse files
1 parent 8fef8fa commit c952bcd

File tree

5 files changed

+35
-8
lines changed

5 files changed

+35
-8
lines changed

clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
25-
<version>v2-rev20240904-2.0.0</version>
25+
<version>v2-rev20240918-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-bigtableadmin:v2-rev20240904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20240918-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/Cluster.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,13 @@ public final class Cluster extends com.google.api.client.json.GenericJson {
7070
@com.google.api.client.util.Key
7171
private java.lang.String name;
7272

73+
/**
74+
* Immutable. The node scaling factor of this cluster.
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.lang.String nodeScalingFactor;
79+
7380
/**
7481
* The number of nodes in the cluster. If no value is set, Cloud Bigtable automatically allocates
7582
* nodes based on your data footprint and optimized for 50% storage utilization.
@@ -178,6 +185,23 @@ public Cluster setName(java.lang.String name) {
178185
return this;
179186
}
180187

188+
/**
189+
* Immutable. The node scaling factor of this cluster.
190+
* @return value or {@code null} for none
191+
*/
192+
public java.lang.String getNodeScalingFactor() {
193+
return nodeScalingFactor;
194+
}
195+
196+
/**
197+
* Immutable. The node scaling factor of this cluster.
198+
* @param nodeScalingFactor nodeScalingFactor or {@code null} for none
199+
*/
200+
public Cluster setNodeScalingFactor(java.lang.String nodeScalingFactor) {
201+
this.nodeScalingFactor = nodeScalingFactor;
202+
return this;
203+
}
204+
181205
/**
182206
* The number of nodes in the cluster. If no value is set, Cloud Bigtable automatically allocates
183207
* nodes based on your data footprint and optimized for 50% storage utilization.

clients/google-api-services-bigtableadmin/v2/2.0.0/com/google/api/services/bigtableadmin/v2/model/RowAffinity.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@
1717
package com.google.api.services.bigtableadmin.v2.model;
1818

1919
/**
20-
* If enabled, the AFE will route the request based on the row key of the request, rather than
20+
* If enabled, Bigtable will route the request based on the row key of the request, rather than
2121
* randomly. Instead, each row key will be assigned to a cluster, and will stick to that cluster. If
2222
* clusters are added or removed, then this may affect which row keys stick to which clusters. To
23-
* avoid this, users can specify a group cluster.
23+
* avoid this, users can use a cluster group to specify which clusters are to be used. In this case,
24+
* new clusters that are not a part of the cluster group will not be routed to, and routing will be
25+
* unaffected by the new cluster. Moreover, clusters specified in the cluster group cannot be
26+
* deleted unless removed from the cluster group.
2427
*
2528
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2629
* transmitted over HTTP when working with the Cloud Bigtable Admin API. For a detailed explanation

clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
11-
<version>v2-rev20240904-2.0.0</version>
12-
<name>Cloud Bigtable Admin API v2-rev20240904-2.0.0</name>
11+
<version>v2-rev20240918-2.0.0</version>
12+
<name>Cloud Bigtable Admin API v2-rev20240918-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-bigtableadmin/v2/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-bigtableadmin</artifactId>
25-
<version>v2-rev20240904-2.0.0</version>
25+
<version>v2-rev20240918-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-bigtableadmin:v2-rev20240904-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20240918-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)