Skip to content

Commit cf1a9d2

Browse files
1 parent caab985 commit cf1a9d2

File tree

11 files changed

+959
-6
lines changed

11 files changed

+959
-6
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-rev20250227-2.0.0</version>
25+
<version>v2-rev20250308-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-rev20250227-2.0.0'
38+
implementation 'com.google.apis:google-api-services-bigtableadmin:v2-rev20250308-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.bigtableadmin.v2.model;
18+
19+
/**
20+
* The metadata for the Operation returned by CreateLogicalView.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Bigtable Admin API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class CreateLogicalViewMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* If set, the time at which this operation finished or was canceled.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String endTime;
39+
40+
/**
41+
* The request that prompted the initiation of this CreateLogicalView operation.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private CreateLogicalViewRequest originalRequest;
46+
47+
/**
48+
* The time at which this operation started.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private String startTime;
53+
54+
/**
55+
* If set, the time at which this operation finished or was canceled.
56+
* @return value or {@code null} for none
57+
*/
58+
public String getEndTime() {
59+
return endTime;
60+
}
61+
62+
/**
63+
* If set, the time at which this operation finished or was canceled.
64+
* @param endTime endTime or {@code null} for none
65+
*/
66+
public CreateLogicalViewMetadata setEndTime(String endTime) {
67+
this.endTime = endTime;
68+
return this;
69+
}
70+
71+
/**
72+
* The request that prompted the initiation of this CreateLogicalView operation.
73+
* @return value or {@code null} for none
74+
*/
75+
public CreateLogicalViewRequest getOriginalRequest() {
76+
return originalRequest;
77+
}
78+
79+
/**
80+
* The request that prompted the initiation of this CreateLogicalView operation.
81+
* @param originalRequest originalRequest or {@code null} for none
82+
*/
83+
public CreateLogicalViewMetadata setOriginalRequest(CreateLogicalViewRequest originalRequest) {
84+
this.originalRequest = originalRequest;
85+
return this;
86+
}
87+
88+
/**
89+
* The time at which this operation started.
90+
* @return value or {@code null} for none
91+
*/
92+
public String getStartTime() {
93+
return startTime;
94+
}
95+
96+
/**
97+
* The time at which this operation started.
98+
* @param startTime startTime or {@code null} for none
99+
*/
100+
public CreateLogicalViewMetadata setStartTime(String startTime) {
101+
this.startTime = startTime;
102+
return this;
103+
}
104+
105+
@Override
106+
public CreateLogicalViewMetadata set(String fieldName, Object value) {
107+
return (CreateLogicalViewMetadata) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public CreateLogicalViewMetadata clone() {
112+
return (CreateLogicalViewMetadata) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.bigtableadmin.v2.model;
18+
19+
/**
20+
* Request message for BigtableInstanceAdmin.CreateLogicalView.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Bigtable Admin API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class CreateLogicalViewRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The logical view to create.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private LogicalView logicalView;
39+
40+
/**
41+
* Required. The ID to use for the logical view, which will become the final component of the
42+
* logical view's resource name.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String logicalViewId;
47+
48+
/**
49+
* Required. The parent instance where this logical view will be created. Format:
50+
* `projects/{project}/instances/{instance}`.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String parent;
55+
56+
/**
57+
* Required. The logical view to create.
58+
* @return value or {@code null} for none
59+
*/
60+
public LogicalView getLogicalView() {
61+
return logicalView;
62+
}
63+
64+
/**
65+
* Required. The logical view to create.
66+
* @param logicalView logicalView or {@code null} for none
67+
*/
68+
public CreateLogicalViewRequest setLogicalView(LogicalView logicalView) {
69+
this.logicalView = logicalView;
70+
return this;
71+
}
72+
73+
/**
74+
* Required. The ID to use for the logical view, which will become the final component of the
75+
* logical view's resource name.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getLogicalViewId() {
79+
return logicalViewId;
80+
}
81+
82+
/**
83+
* Required. The ID to use for the logical view, which will become the final component of the
84+
* logical view's resource name.
85+
* @param logicalViewId logicalViewId or {@code null} for none
86+
*/
87+
public CreateLogicalViewRequest setLogicalViewId(java.lang.String logicalViewId) {
88+
this.logicalViewId = logicalViewId;
89+
return this;
90+
}
91+
92+
/**
93+
* Required. The parent instance where this logical view will be created. Format:
94+
* `projects/{project}/instances/{instance}`.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.String getParent() {
98+
return parent;
99+
}
100+
101+
/**
102+
* Required. The parent instance where this logical view will be created. Format:
103+
* `projects/{project}/instances/{instance}`.
104+
* @param parent parent or {@code null} for none
105+
*/
106+
public CreateLogicalViewRequest setParent(java.lang.String parent) {
107+
this.parent = parent;
108+
return this;
109+
}
110+
111+
@Override
112+
public CreateLogicalViewRequest set(String fieldName, Object value) {
113+
return (CreateLogicalViewRequest) super.set(fieldName, value);
114+
}
115+
116+
@Override
117+
public CreateLogicalViewRequest clone() {
118+
return (CreateLogicalViewRequest) super.clone();
119+
}
120+
121+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.bigtableadmin.v2.model;
18+
19+
/**
20+
* The metadata for the Operation returned by CreateMaterializedView.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Bigtable Admin API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class CreateMaterializedViewMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* If set, the time at which this operation finished or was canceled.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String endTime;
39+
40+
/**
41+
* The request that prompted the initiation of this CreateMaterializedView operation.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private CreateMaterializedViewRequest originalRequest;
46+
47+
/**
48+
* The time at which this operation started.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private String startTime;
53+
54+
/**
55+
* If set, the time at which this operation finished or was canceled.
56+
* @return value or {@code null} for none
57+
*/
58+
public String getEndTime() {
59+
return endTime;
60+
}
61+
62+
/**
63+
* If set, the time at which this operation finished or was canceled.
64+
* @param endTime endTime or {@code null} for none
65+
*/
66+
public CreateMaterializedViewMetadata setEndTime(String endTime) {
67+
this.endTime = endTime;
68+
return this;
69+
}
70+
71+
/**
72+
* The request that prompted the initiation of this CreateMaterializedView operation.
73+
* @return value or {@code null} for none
74+
*/
75+
public CreateMaterializedViewRequest getOriginalRequest() {
76+
return originalRequest;
77+
}
78+
79+
/**
80+
* The request that prompted the initiation of this CreateMaterializedView operation.
81+
* @param originalRequest originalRequest or {@code null} for none
82+
*/
83+
public CreateMaterializedViewMetadata setOriginalRequest(CreateMaterializedViewRequest originalRequest) {
84+
this.originalRequest = originalRequest;
85+
return this;
86+
}
87+
88+
/**
89+
* The time at which this operation started.
90+
* @return value or {@code null} for none
91+
*/
92+
public String getStartTime() {
93+
return startTime;
94+
}
95+
96+
/**
97+
* The time at which this operation started.
98+
* @param startTime startTime or {@code null} for none
99+
*/
100+
public CreateMaterializedViewMetadata setStartTime(String startTime) {
101+
this.startTime = startTime;
102+
return this;
103+
}
104+
105+
@Override
106+
public CreateMaterializedViewMetadata set(String fieldName, Object value) {
107+
return (CreateMaterializedViewMetadata) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public CreateMaterializedViewMetadata clone() {
112+
return (CreateMaterializedViewMetadata) super.clone();
113+
}
114+
115+
}

0 commit comments

Comments
 (0)