Skip to content

Commit 7395919

Browse files
1 parent c2738e5 commit 7395919

File tree

16 files changed

+944
-24
lines changed

16 files changed

+944
-24
lines changed

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

clients/google-api-services-memcache/v1/2.0.0/com/google/api/services/memcache/v1/CloudMemorystoreforMemcached.java

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

447447
/**
448-
* Optional. A list of extra location types that should be used as conditions for
449-
* controlling the visibility of the locations.
448+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
449+
* documented otherwise. This is primarily for internal usage.
450450
*/
451451
@com.google.api.client.util.Key
452452
private java.util.List<java.lang.String> extraLocationTypes;
453453

454-
/** Optional. A list of extra location types that should be used as conditions for controlling the
455-
visibility of the locations.
454+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
455+
otherwise. This is primarily for internal usage.
456456
*/
457457
public java.util.List<java.lang.String> getExtraLocationTypes() {
458458
return extraLocationTypes;
459459
}
460460

461461
/**
462-
* Optional. A list of extra location types that should be used as conditions for
463-
* controlling the visibility of the locations.
462+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
463+
* documented otherwise. This is primarily for internal usage.
464464
*/
465465
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466466
this.extraLocationTypes = extraLocationTypes;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.memcache.v1.model;
18+
19+
/**
20+
* Request 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 Cloud Memorystore for Memcached API. For a detailed
24+
* explanation 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 GetTagsRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The full One Platform resource name of the service resource.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String name;
39+
40+
/**
41+
* Required. The full One Platform resource name of the service resource.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getName() {
45+
return name;
46+
}
47+
48+
/**
49+
* Required. The full One Platform resource name of the service resource.
50+
* @param name name or {@code null} for none
51+
*/
52+
public GetTagsRequest setName(java.lang.String name) {
53+
this.name = name;
54+
return this;
55+
}
56+
57+
@Override
58+
public GetTagsRequest set(String fieldName, Object value) {
59+
return (GetTagsRequest) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GetTagsRequest clone() {
64+
return (GetTagsRequest) super.clone();
65+
}
66+
67+
}
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.memcache.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 Cloud Memorystore for Memcached API. For a detailed
24+
* explanation 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 GetTagsResponse extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The full One Platform resource name of the service resource.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String name;
39+
40+
/**
41+
* Required. Tag keys/values directly bound to this resource. Each item in the map must be
42+
* expressed as " : ". For example: "123/environment" : "production", "123/costCenter" :
43+
* "marketing"
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.Map<String, java.lang.String> tags;
48+
49+
/**
50+
* A checksum based on the current bindings. This field is always set in server responses.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String tagsEtag;
55+
56+
/**
57+
* Required. The full One Platform resource name of the service resource.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getName() {
61+
return name;
62+
}
63+
64+
/**
65+
* Required. The full One Platform resource name of the service resource.
66+
* @param name name or {@code null} for none
67+
*/
68+
public GetTagsResponse setName(java.lang.String name) {
69+
this.name = name;
70+
return this;
71+
}
72+
73+
/**
74+
* Required. Tag keys/values directly bound to this resource. Each item in the map must be
75+
* expressed as " : ". For example: "123/environment" : "production", "123/costCenter" :
76+
* "marketing"
77+
* @return value or {@code null} for none
78+
*/
79+
public java.util.Map<String, java.lang.String> getTags() {
80+
return tags;
81+
}
82+
83+
/**
84+
* Required. Tag keys/values directly bound to this resource. Each item in the map must be
85+
* expressed as " : ". For example: "123/environment" : "production", "123/costCenter" :
86+
* "marketing"
87+
* @param tags tags or {@code null} for none
88+
*/
89+
public GetTagsResponse setTags(java.util.Map<String, java.lang.String> tags) {
90+
this.tags = tags;
91+
return this;
92+
}
93+
94+
/**
95+
* A checksum based on the current bindings. This field is always set in server responses.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getTagsEtag() {
99+
return tagsEtag;
100+
}
101+
102+
/**
103+
* A checksum based on the current bindings. This field is always set in server responses.
104+
* @param tagsEtag tagsEtag or {@code null} for none
105+
*/
106+
public GetTagsResponse setTagsEtag(java.lang.String tagsEtag) {
107+
this.tagsEtag = tagsEtag;
108+
return this;
109+
}
110+
111+
@Override
112+
public GetTagsResponse set(String fieldName, Object value) {
113+
return (GetTagsResponse) super.set(fieldName, value);
114+
}
115+
116+
@Override
117+
public GetTagsResponse clone() {
118+
return (GetTagsResponse) super.clone();
119+
}
120+
121+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
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.memcache.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 Cloud Memorystore for Memcached API. For a detailed
24+
* explanation 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 SetTagsRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The full One Platform resource name of the service resource.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String name;
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+
* The value may be {@code null}.
61+
*/
62+
@com.google.api.client.util.Key
63+
private java.lang.String tagsEtag;
64+
65+
/**
66+
* Required. The full One Platform resource name of the service resource.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getName() {
70+
return name;
71+
}
72+
73+
/**
74+
* Required. The full One Platform resource name of the service resource.
75+
* @param name name or {@code null} for none
76+
*/
77+
public SetTagsRequest setName(java.lang.String name) {
78+
this.name = name;
79+
return this;
80+
}
81+
82+
/**
83+
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
84+
* idempotent if a `request_id` is provided.
85+
* @return value or {@code null} for none
86+
*/
87+
public java.lang.String getRequestId() {
88+
return requestId;
89+
}
90+
91+
/**
92+
* Optional. A unique identifier for this request. Must be a valid UUID. This request is only
93+
* idempotent if a `request_id` is provided.
94+
* @param requestId requestId or {@code null} for none
95+
*/
96+
public SetTagsRequest setRequestId(java.lang.String requestId) {
97+
this.requestId = requestId;
98+
return this;
99+
}
100+
101+
/**
102+
* Required. These bindings will override any bindings previously set and will be effective
103+
* immediately. Each item in the map must be expressed as " : ". For example: "123/environment" :
104+
* "production", "123/costCenter" : "marketing"
105+
* @return value or {@code null} for none
106+
*/
107+
public java.util.Map<String, java.lang.String> getTags() {
108+
return tags;
109+
}
110+
111+
/**
112+
* Required. These bindings will override any bindings previously set and will be effective
113+
* immediately. Each item in the map must be expressed as " : ". For example: "123/environment" :
114+
* "production", "123/costCenter" : "marketing"
115+
* @param tags tags or {@code null} for none
116+
*/
117+
public SetTagsRequest setTags(java.util.Map<String, java.lang.String> tags) {
118+
this.tags = tags;
119+
return this;
120+
}
121+
122+
/**
123+
* Optional. A checksum based on the current bindings which can be passed to prevent race
124+
* conditions. If not passed, etag check would be skipped.
125+
* @return value or {@code null} for none
126+
*/
127+
public java.lang.String getTagsEtag() {
128+
return tagsEtag;
129+
}
130+
131+
/**
132+
* Optional. A checksum based on the current bindings which can be passed to prevent race
133+
* conditions. If not passed, etag check would be skipped.
134+
* @param tagsEtag tagsEtag or {@code null} for none
135+
*/
136+
public SetTagsRequest setTagsEtag(java.lang.String tagsEtag) {
137+
this.tagsEtag = tagsEtag;
138+
return this;
139+
}
140+
141+
@Override
142+
public SetTagsRequest set(String fieldName, Object value) {
143+
return (SetTagsRequest) super.set(fieldName, value);
144+
}
145+
146+
@Override
147+
public SetTagsRequest clone() {
148+
return (SetTagsRequest) super.clone();
149+
}
150+
151+
}

0 commit comments

Comments
 (0)