Skip to content

Commit de249c6

Browse files
1 parent 04b262d commit de249c6

36 files changed

+2970
-12
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-rev20240604-2.0.0</version>
25+
<version>v1-rev20240919-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-rev20240604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-memcache:v1-rev20240919-2.0.0'
3939
}
4040
```
4141

Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
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+
* Provides the mapping of a cloud asset to a direct physical location or to a proxy that defines
21+
* the location on its behalf.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Cloud Memorystore for Memcached API. For a detailed
25+
* explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class AssetLocation extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants that use CCFE RMS
36+
* for storing resource metadata.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String ccfeRmsPath;
41+
42+
/**
43+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
44+
* the time of asset creation.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private IsolationExpectations expected;
49+
50+
/**
51+
* Defines extra parameters required for specific asset types.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.util.List<ExtraParameter> extraParameters;
56+
57+
/**
58+
* Contains all kinds of physical location definitions for this asset.
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.util.List<LocationData> locationData;
63+
64+
/**
65+
* Defines parents assets if any in order to allow later generation of child_asset_location data
66+
* via child assets.
67+
* The value may be {@code null}.
68+
*/
69+
@com.google.api.client.util.Key
70+
private java.util.List<CloudAsset> parentAsset;
71+
72+
/**
73+
* Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants that use CCFE RMS
74+
* for storing resource metadata.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getCcfeRmsPath() {
78+
return ccfeRmsPath;
79+
}
80+
81+
/**
82+
* Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants that use CCFE RMS
83+
* for storing resource metadata.
84+
* @param ccfeRmsPath ccfeRmsPath or {@code null} for none
85+
*/
86+
public AssetLocation setCcfeRmsPath(java.lang.String ccfeRmsPath) {
87+
this.ccfeRmsPath = ccfeRmsPath;
88+
return this;
89+
}
90+
91+
/**
92+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
93+
* the time of asset creation.
94+
* @return value or {@code null} for none
95+
*/
96+
public IsolationExpectations getExpected() {
97+
return expected;
98+
}
99+
100+
/**
101+
* Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state of the region at
102+
* the time of asset creation.
103+
* @param expected expected or {@code null} for none
104+
*/
105+
public AssetLocation setExpected(IsolationExpectations expected) {
106+
this.expected = expected;
107+
return this;
108+
}
109+
110+
/**
111+
* Defines extra parameters required for specific asset types.
112+
* @return value or {@code null} for none
113+
*/
114+
public java.util.List<ExtraParameter> getExtraParameters() {
115+
return extraParameters;
116+
}
117+
118+
/**
119+
* Defines extra parameters required for specific asset types.
120+
* @param extraParameters extraParameters or {@code null} for none
121+
*/
122+
public AssetLocation setExtraParameters(java.util.List<ExtraParameter> extraParameters) {
123+
this.extraParameters = extraParameters;
124+
return this;
125+
}
126+
127+
/**
128+
* Contains all kinds of physical location definitions for this asset.
129+
* @return value or {@code null} for none
130+
*/
131+
public java.util.List<LocationData> getLocationData() {
132+
return locationData;
133+
}
134+
135+
/**
136+
* Contains all kinds of physical location definitions for this asset.
137+
* @param locationData locationData or {@code null} for none
138+
*/
139+
public AssetLocation setLocationData(java.util.List<LocationData> locationData) {
140+
this.locationData = locationData;
141+
return this;
142+
}
143+
144+
/**
145+
* Defines parents assets if any in order to allow later generation of child_asset_location data
146+
* via child assets.
147+
* @return value or {@code null} for none
148+
*/
149+
public java.util.List<CloudAsset> getParentAsset() {
150+
return parentAsset;
151+
}
152+
153+
/**
154+
* Defines parents assets if any in order to allow later generation of child_asset_location data
155+
* via child assets.
156+
* @param parentAsset parentAsset or {@code null} for none
157+
*/
158+
public AssetLocation setParentAsset(java.util.List<CloudAsset> parentAsset) {
159+
this.parentAsset = parentAsset;
160+
return this;
161+
}
162+
163+
@Override
164+
public AssetLocation set(String fieldName, Object value) {
165+
return (AssetLocation) super.set(fieldName, value);
166+
}
167+
168+
@Override
169+
public AssetLocation clone() {
170+
return (AssetLocation) super.clone();
171+
}
172+
173+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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+
* Policy ID that identified data placement in Blobstore as per go/blobstore-user-guide#data-
21+
* metadata-placement-and-failure-domains
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Cloud Memorystore for Memcached API. For a detailed
25+
* explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class BlobstoreLocation extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> policyId;
39+
40+
/**
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getPolicyId() {
44+
return policyId;
45+
}
46+
47+
/**
48+
* @param policyId policyId or {@code null} for none
49+
*/
50+
public BlobstoreLocation setPolicyId(java.util.List<java.lang.String> policyId) {
51+
this.policyId = policyId;
52+
return this;
53+
}
54+
55+
@Override
56+
public BlobstoreLocation set(String fieldName, Object value) {
57+
return (BlobstoreLocation) super.set(fieldName, value);
58+
}
59+
60+
@Override
61+
public BlobstoreLocation clone() {
62+
return (BlobstoreLocation) super.clone();
63+
}
64+
65+
}
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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+
* Model definition for CloudAsset.
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 CloudAsset extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String assetName;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String assetType;
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.lang.String getAssetName() {
49+
return assetName;
50+
}
51+
52+
/**
53+
* @param assetName assetName or {@code null} for none
54+
*/
55+
public CloudAsset setAssetName(java.lang.String assetName) {
56+
this.assetName = assetName;
57+
return this;
58+
}
59+
60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public java.lang.String getAssetType() {
64+
return assetType;
65+
}
66+
67+
/**
68+
* @param assetType assetType or {@code null} for none
69+
*/
70+
public CloudAsset setAssetType(java.lang.String assetType) {
71+
this.assetType = assetType;
72+
return this;
73+
}
74+
75+
@Override
76+
public CloudAsset set(String fieldName, Object value) {
77+
return (CloudAsset) super.set(fieldName, value);
78+
}
79+
80+
@Override
81+
public CloudAsset clone() {
82+
return (CloudAsset) super.clone();
83+
}
84+
85+
}

0 commit comments

Comments
 (0)