Skip to content

Commit bf9528e

Browse files
1 parent 74d0526 commit bf9528e

18 files changed

+418
-110
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-rev20250828-2.0.0</version>
25+
<version>v2-rev20250912-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-rev20250828-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20250912-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13223,22 +13223,22 @@ public List setName(java.lang.String name) {
1322313223
}
1322413224

1322513225
/**
13226-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
13227-
* documented otherwise. This is primarily for internal usage.
13226+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
13227+
* is primarily intended for internal usage.
1322813228
*/
1322913229
@com.google.api.client.util.Key
1323013230
private java.util.List<java.lang.String> extraLocationTypes;
1323113231

13232-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
13233-
otherwise. This is primarily for internal usage.
13232+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
13233+
primarily intended for internal usage.
1323413234
*/
1323513235
public java.util.List<java.lang.String> getExtraLocationTypes() {
1323613236
return extraLocationTypes;
1323713237
}
1323813238

1323913239
/**
13240-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
13241-
* documented otherwise. This is primarily for internal usage.
13240+
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
13241+
* is primarily intended for internal usage.
1324213242
*/
1324313243
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
1324413244
this.extraLocationTypes = extraLocationTypes;

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

Lines changed: 57 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,34 @@
3131
public final class CreateBackupMetadata extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* If set, the time at which this operation finished or was cancelled.
34+
* If set, the time at which this operation finished or was cancelled. DEPRECATED: Use finish_time
35+
* instead.
3536
* The value may be {@code null}.
3637
*/
3738
@com.google.api.client.util.Key
3839
private String endTime;
3940

41+
/**
42+
* The time at which the operation failed or was completed successfully.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private String finishTime;
47+
4048
/**
4149
* The name of the backup being created.
4250
* The value may be {@code null}.
4351
*/
4452
@com.google.api.client.util.Key
4553
private java.lang.String name;
4654

55+
/**
56+
* The time at which the original request was received.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private String requestTime;
61+
4762
/**
4863
* The name of the table the backup is created from.
4964
* The value may be {@code null}.
@@ -52,29 +67,48 @@ public final class CreateBackupMetadata extends com.google.api.client.json.Gener
5267
private java.lang.String sourceTable;
5368

5469
/**
55-
* The time at which this operation started.
70+
* The time at which this operation started. DEPRECATED: Use request_time instead.
5671
* The value may be {@code null}.
5772
*/
5873
@com.google.api.client.util.Key
5974
private String startTime;
6075

6176
/**
62-
* If set, the time at which this operation finished or was cancelled.
77+
* If set, the time at which this operation finished or was cancelled. DEPRECATED: Use finish_time
78+
* instead.
6379
* @return value or {@code null} for none
6480
*/
6581
public String getEndTime() {
6682
return endTime;
6783
}
6884

6985
/**
70-
* If set, the time at which this operation finished or was cancelled.
86+
* If set, the time at which this operation finished or was cancelled. DEPRECATED: Use finish_time
87+
* instead.
7188
* @param endTime endTime or {@code null} for none
7289
*/
7390
public CreateBackupMetadata setEndTime(String endTime) {
7491
this.endTime = endTime;
7592
return this;
7693
}
7794

95+
/**
96+
* The time at which the operation failed or was completed successfully.
97+
* @return value or {@code null} for none
98+
*/
99+
public String getFinishTime() {
100+
return finishTime;
101+
}
102+
103+
/**
104+
* The time at which the operation failed or was completed successfully.
105+
* @param finishTime finishTime or {@code null} for none
106+
*/
107+
public CreateBackupMetadata setFinishTime(String finishTime) {
108+
this.finishTime = finishTime;
109+
return this;
110+
}
111+
78112
/**
79113
* The name of the backup being created.
80114
* @return value or {@code null} for none
@@ -92,6 +126,23 @@ public CreateBackupMetadata setName(java.lang.String name) {
92126
return this;
93127
}
94128

129+
/**
130+
* The time at which the original request was received.
131+
* @return value or {@code null} for none
132+
*/
133+
public String getRequestTime() {
134+
return requestTime;
135+
}
136+
137+
/**
138+
* The time at which the original request was received.
139+
* @param requestTime requestTime or {@code null} for none
140+
*/
141+
public CreateBackupMetadata setRequestTime(String requestTime) {
142+
this.requestTime = requestTime;
143+
return this;
144+
}
145+
95146
/**
96147
* The name of the table the backup is created from.
97148
* @return value or {@code null} for none
@@ -110,15 +161,15 @@ public CreateBackupMetadata setSourceTable(java.lang.String sourceTable) {
110161
}
111162

112163
/**
113-
* The time at which this operation started.
164+
* The time at which this operation started. DEPRECATED: Use request_time instead.
114165
* @return value or {@code null} for none
115166
*/
116167
public String getStartTime() {
117168
return startTime;
118169
}
119170

120171
/**
121-
* The time at which this operation started.
172+
* The time at which this operation started. DEPRECATED: Use request_time instead.
122173
* @param startTime startTime or {@code null} for none
123174
*/
124175
public CreateBackupMetadata setStartTime(String startTime) {

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

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,19 @@
3131
public final class CreateLogicalViewMetadata extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* If set, the time at which this operation finished or was canceled.
34+
* DEPRECATED: Use finish_time instead.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private String endTime;
3939

40+
/**
41+
* The time at which the operation failed or was completed successfully.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private String finishTime;
46+
4047
/**
4148
* The request that prompted the initiation of this CreateLogicalView operation.
4249
* The value may be {@code null}.
@@ -45,29 +52,53 @@ public final class CreateLogicalViewMetadata extends com.google.api.client.json.
4552
private CreateLogicalViewRequest originalRequest;
4653

4754
/**
48-
* The time at which this operation started.
55+
* The time at which the original request was received.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private String requestTime;
60+
61+
/**
62+
* DEPRECATED: Use request_time instead.
4963
* The value may be {@code null}.
5064
*/
5165
@com.google.api.client.util.Key
5266
private String startTime;
5367

5468
/**
55-
* If set, the time at which this operation finished or was canceled.
69+
* DEPRECATED: Use finish_time instead.
5670
* @return value or {@code null} for none
5771
*/
5872
public String getEndTime() {
5973
return endTime;
6074
}
6175

6276
/**
63-
* If set, the time at which this operation finished or was canceled.
77+
* DEPRECATED: Use finish_time instead.
6478
* @param endTime endTime or {@code null} for none
6579
*/
6680
public CreateLogicalViewMetadata setEndTime(String endTime) {
6781
this.endTime = endTime;
6882
return this;
6983
}
7084

85+
/**
86+
* The time at which the operation failed or was completed successfully.
87+
* @return value or {@code null} for none
88+
*/
89+
public String getFinishTime() {
90+
return finishTime;
91+
}
92+
93+
/**
94+
* The time at which the operation failed or was completed successfully.
95+
* @param finishTime finishTime or {@code null} for none
96+
*/
97+
public CreateLogicalViewMetadata setFinishTime(String finishTime) {
98+
this.finishTime = finishTime;
99+
return this;
100+
}
101+
71102
/**
72103
* The request that prompted the initiation of this CreateLogicalView operation.
73104
* @return value or {@code null} for none
@@ -86,15 +117,32 @@ public CreateLogicalViewMetadata setOriginalRequest(CreateLogicalViewRequest ori
86117
}
87118

88119
/**
89-
* The time at which this operation started.
120+
* The time at which the original request was received.
121+
* @return value or {@code null} for none
122+
*/
123+
public String getRequestTime() {
124+
return requestTime;
125+
}
126+
127+
/**
128+
* The time at which the original request was received.
129+
* @param requestTime requestTime or {@code null} for none
130+
*/
131+
public CreateLogicalViewMetadata setRequestTime(String requestTime) {
132+
this.requestTime = requestTime;
133+
return this;
134+
}
135+
136+
/**
137+
* DEPRECATED: Use request_time instead.
90138
* @return value or {@code null} for none
91139
*/
92140
public String getStartTime() {
93141
return startTime;
94142
}
95143

96144
/**
97-
* The time at which this operation started.
145+
* DEPRECATED: Use request_time instead.
98146
* @param startTime startTime or {@code null} for none
99147
*/
100148
public CreateLogicalViewMetadata setStartTime(String startTime) {

0 commit comments

Comments
 (0)