Skip to content

Commit 508eeac

Browse files
1 parent 7d9f961 commit 508eeac

File tree

8 files changed

+926
-19
lines changed

8 files changed

+926
-19
lines changed

clients/google-api-services-gkebackup/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-gkebackup</artifactId>
25-
<version>v1-rev20251027-2.0.0</version>
25+
<version>v1-rev20251112-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-gkebackup:v1-rev20251027-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkebackup:v1-rev20251112-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/BackupforGKE.java

Lines changed: 551 additions & 10 deletions
Large diffs are not rendered by default.
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
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.gkebackup.v1.model;
18+
19+
/**
20+
* Response message for GetTags.
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 Backup for GKE API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GetTagsResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* A checksum based on the current bindings. This field is always set in server responses.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String etag;
38+
39+
/**
40+
* Required. The full resource name of the service resource.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String name;
45+
46+
/**
47+
* Required. Tag keys/values directly bound to this resource. Each item in the map must be
48+
* expressed as " : ". For example: "123/environment" : "production", "123/costCenter" :
49+
* "marketing"
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.Map<String, java.lang.String> tags;
54+
55+
/**
56+
* A checksum based on the current bindings. This field is always set in server responses.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.String getEtag() {
60+
return etag;
61+
}
62+
63+
/**
64+
* A checksum based on the current bindings. This field is always set in server responses.
65+
* @param etag etag or {@code null} for none
66+
*/
67+
public GetTagsResponse setEtag(java.lang.String etag) {
68+
this.etag = etag;
69+
return this;
70+
}
71+
72+
/**
73+
* Required. The full resource name of the service resource.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getName() {
77+
return name;
78+
}
79+
80+
/**
81+
* Required. The full resource name of the service resource.
82+
* @param name name or {@code null} for none
83+
*/
84+
public GetTagsResponse setName(java.lang.String name) {
85+
this.name = name;
86+
return this;
87+
}
88+
89+
/**
90+
* Required. Tag keys/values directly bound to this resource. Each item in the map must be
91+
* expressed as " : ". For example: "123/environment" : "production", "123/costCenter" :
92+
* "marketing"
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.Map<String, java.lang.String> getTags() {
96+
return tags;
97+
}
98+
99+
/**
100+
* Required. Tag keys/values directly bound to this resource. Each item in the map must be
101+
* expressed as " : ". For example: "123/environment" : "production", "123/costCenter" :
102+
* "marketing"
103+
* @param tags tags or {@code null} for none
104+
*/
105+
public GetTagsResponse setTags(java.util.Map<String, java.lang.String> tags) {
106+
this.tags = tags;
107+
return this;
108+
}
109+
110+
@Override
111+
public GetTagsResponse set(String fieldName, Object value) {
112+
return (GetTagsResponse) super.set(fieldName, value);
113+
}
114+
115+
@Override
116+
public GetTagsResponse clone() {
117+
return (GetTagsResponse) super.clone();
118+
}
119+
120+
}

clients/google-api-services-gkebackup/v1/2.0.0/com/google/api/services/gkebackup/v1/model/GoogleLongrunningListOperationsResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class GoogleLongrunningListOperationsResponse extends com.google.ap
4545

4646
/**
4747
* Unordered list. Unreachable resources. Populated when the request sets
48-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
4949
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
@@ -88,7 +88,7 @@ public GoogleLongrunningListOperationsResponse setOperations(java.util.List<Goog
8888

8989
/**
9090
* Unordered list. Unreachable resources. Populated when the request sets
91-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
9292
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
@@ -98,7 +98,7 @@ public java.util.List<java.lang.String> getUnreachable() {
9898

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
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.gkebackup.v1.model;
18+
19+
/**
20+
* Request message for SetTags.
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 Backup for GKE API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class SetTagsRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. A checksum based on the current bindings which can be passed to prevent race
34+
* conditions. If not passed, etag check would be skipped.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String etag;
39+
40+
/**
41+
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
42+
* idempotent if a `request_id` is provided.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String requestId;
47+
48+
/**
49+
* Required. These bindings will override any bindings previously set and will be effective
50+
* immediately. Each item in the map must be expressed as " : ". For example: "123/environment" :
51+
* "production", "123/costCenter" : "marketing"
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.util.Map<String, java.lang.String> tags;
56+
57+
/**
58+
* Optional. A checksum based on the current bindings which can be passed to prevent race
59+
* conditions. If not passed, etag check would be skipped.
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getEtag() {
63+
return etag;
64+
}
65+
66+
/**
67+
* Optional. A checksum based on the current bindings which can be passed to prevent race
68+
* conditions. If not passed, etag check would be skipped.
69+
* @param etag etag or {@code null} for none
70+
*/
71+
public SetTagsRequest setEtag(java.lang.String etag) {
72+
this.etag = etag;
73+
return this;
74+
}
75+
76+
/**
77+
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
78+
* idempotent if a `request_id` is provided.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.String getRequestId() {
82+
return requestId;
83+
}
84+
85+
/**
86+
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
87+
* idempotent if a `request_id` is provided.
88+
* @param requestId requestId or {@code null} for none
89+
*/
90+
public SetTagsRequest setRequestId(java.lang.String requestId) {
91+
this.requestId = requestId;
92+
return this;
93+
}
94+
95+
/**
96+
* Required. These bindings will override any bindings previously set and will be effective
97+
* immediately. Each item in the map must be expressed as " : ". For example: "123/environment" :
98+
* "production", "123/costCenter" : "marketing"
99+
* @return value or {@code null} for none
100+
*/
101+
public java.util.Map<String, java.lang.String> getTags() {
102+
return tags;
103+
}
104+
105+
/**
106+
* Required. These bindings will override any bindings previously set and will be effective
107+
* immediately. Each item in the map must be expressed as " : ". For example: "123/environment" :
108+
* "production", "123/costCenter" : "marketing"
109+
* @param tags tags or {@code null} for none
110+
*/
111+
public SetTagsRequest setTags(java.util.Map<String, java.lang.String> tags) {
112+
this.tags = tags;
113+
return this;
114+
}
115+
116+
@Override
117+
public SetTagsRequest set(String fieldName, Object value) {
118+
return (SetTagsRequest) super.set(fieldName, value);
119+
}
120+
121+
@Override
122+
public SetTagsRequest clone() {
123+
return (SetTagsRequest) super.clone();
124+
}
125+
126+
}

0 commit comments

Comments
 (0)