Skip to content

Commit 271cd7f

Browse files
chore: regenerate walletobjects client
1 parent 5ec85f7 commit 271cd7f

File tree

5 files changed

+76
-10
lines changed

5 files changed

+76
-10
lines changed

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

clients/google-api-services-walletobjects/v1/2.0.0/com/google/api/services/walletobjects/Walletobjects.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1565,7 +1565,8 @@ public List set(String parameterName, Object value) {
15651565
}
15661566
}
15671567
/**
1568-
* Modifies linked offer objects for the event ticket object with the given ID.
1568+
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the event ticket
1569+
* object with the given ID.
15691570
*
15701571
* Create a request for the method "eventticketobject.modifylinkedofferobjects".
15711572
*
@@ -1591,7 +1592,8 @@ public class Modifylinkedofferobjects extends WalletobjectsRequest<com.google.ap
15911592
private static final String REST_PATH = "walletobjects/v1/eventTicketObject/{resourceId}/modifyLinkedOfferObjects";
15921593

15931594
/**
1594-
* Modifies linked offer objects for the event ticket object with the given ID.
1595+
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the event ticket
1596+
* object with the given ID.
15951597
*
15961598
* Create a request for the method "eventticketobject.modifylinkedofferobjects".
15971599
*
@@ -9251,7 +9253,8 @@ public List set(String parameterName, Object value) {
92519253
}
92529254
}
92539255
/**
9254-
* Modifies linked offer objects for the loyalty object with the given ID.
9256+
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the loyalty object
9257+
* with the given ID.
92559258
*
92569259
* Create a request for the method "loyaltyobject.modifylinkedofferobjects".
92579260
*
@@ -9277,7 +9280,8 @@ public class Modifylinkedofferobjects extends WalletobjectsRequest<com.google.ap
92779280
private static final String REST_PATH = "walletobjects/v1/loyaltyObject/{resourceId}/modifyLinkedOfferObjects";
92789281

92799282
/**
9280-
* Modifies linked offer objects for the loyalty object with the given ID.
9283+
* Deprecated: Use Auto Linked Passes instead. Modifies linked offer objects for the loyalty
9284+
* object with the given ID.
92819285
*
92829286
* Create a request for the method "loyaltyobject.modifylinkedofferobjects".
92839287
*

clients/google-api-services-walletobjects/v1/2.0.0/com/google/api/services/walletobjects/model/Blobstore2Info.java

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@ public final class Blobstore2Info extends com.google.api.client.json.GenericJson
6868
@com.google.api.client.util.Key
6969
private java.lang.String readToken;
7070

71+
/**
72+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
73+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
74+
* media uploads.
75+
* The value may be {@code null}.
76+
*/
77+
@com.google.api.client.util.Key
78+
private java.lang.String uploadFragmentListCreationInfo;
79+
7180
/**
7281
* Metadata passed from Blobstore -> Scotty for a new GCS upload. This is a signed, serialized
7382
* blobstore2.BlobMetadataContainer proto which must never be consumed outside of Bigstore, and is
@@ -232,6 +241,59 @@ public Blobstore2Info setReadToken(java.lang.String readToken) {
232241
return this;
233242
}
234243

244+
/**
245+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
246+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
247+
* media uploads.
248+
* @see #decodeUploadFragmentListCreationInfo()
249+
* @return value or {@code null} for none
250+
*/
251+
public java.lang.String getUploadFragmentListCreationInfo() {
252+
return uploadFragmentListCreationInfo;
253+
}
254+
255+
/**
256+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
257+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
258+
* media uploads.
259+
* @see #getUploadFragmentListCreationInfo()
260+
* @return Base64 decoded value or {@code null} for none
261+
*
262+
* @since 1.14
263+
*/
264+
public byte[] decodeUploadFragmentListCreationInfo() {
265+
return com.google.api.client.util.Base64.decodeBase64(uploadFragmentListCreationInfo);
266+
}
267+
268+
/**
269+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
270+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
271+
* media uploads.
272+
* @see #encodeUploadFragmentListCreationInfo()
273+
* @param uploadFragmentListCreationInfo uploadFragmentListCreationInfo or {@code null} for none
274+
*/
275+
public Blobstore2Info setUploadFragmentListCreationInfo(java.lang.String uploadFragmentListCreationInfo) {
276+
this.uploadFragmentListCreationInfo = uploadFragmentListCreationInfo;
277+
return this;
278+
}
279+
280+
/**
281+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
282+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
283+
* media uploads.
284+
* @see #setUploadFragmentListCreationInfo()
285+
*
286+
* <p>
287+
* The value is encoded Base64 or {@code null} for none.
288+
* </p>
289+
*
290+
* @since 1.14
291+
*/
292+
public Blobstore2Info encodeUploadFragmentListCreationInfo(byte[] uploadFragmentListCreationInfo) {
293+
this.uploadFragmentListCreationInfo = com.google.api.client.util.Base64.encodeBase64URLSafeString(uploadFragmentListCreationInfo);
294+
return this;
295+
}
296+
235297
/**
236298
* Metadata passed from Blobstore -> Scotty for a new GCS upload. This is a signed, serialized
237299
* blobstore2.BlobMetadataContainer proto which must never be consumed outside of Bigstore, and is

clients/google-api-services-walletobjects/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-walletobjects</artifactId>
11-
<version>v1-rev20251202-2.0.0</version>
12-
<name>Google Wallet API v1-rev20251202-2.0.0</name>
11+
<version>v1-rev20260204-2.0.0</version>
12+
<name>Google Wallet API v1-rev20260204-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)