From a27ffa2a97f38e17a7ca6c931c5505f296a88cf9 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Wed, 11 Feb 2026 17:03:48 -0800 Subject: [PATCH] chore: regenerate appsmarket client --- .../v2/2.0.0/README.md | 4 +- .../appsmarket/v2/GSuiteMarketplaceAPI.java | 56 +++++++++++-------- .../appsmarket/v2/model/CustomerLicense.java | 18 +++--- .../appsmarket/v2/model/UserLicense.java | 12 ++-- .../v2/2.0.0/pom.xml | 4 +- .../v2/README.md | 4 +- 6 files changed, 53 insertions(+), 45 deletions(-) diff --git a/clients/google-api-services-appsmarket/v2/2.0.0/README.md b/clients/google-api-services-appsmarket/v2/2.0.0/README.md index 3a9bd34c6b0..e9d276a0866 100644 --- a/clients/google-api-services-appsmarket/v2/2.0.0/README.md +++ b/clients/google-api-services-appsmarket/v2/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-appsmarket - v2-rev20251217-2.0.0 + v2-rev20260209-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-appsmarket:v2-rev20251217-2.0.0' + implementation 'com.google.apis:google-api-services-appsmarket:v2-rev20260209-2.0.0' } ``` diff --git a/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/GSuiteMarketplaceAPI.java b/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/GSuiteMarketplaceAPI.java index 094bd125be6..0faf0f08146 100644 --- a/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/GSuiteMarketplaceAPI.java +++ b/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/GSuiteMarketplaceAPI.java @@ -154,15 +154,17 @@ public CustomerLicense customerLicense() { public class CustomerLicense { /** - * Gets the status of a license for a customer to determine if they have access for a given app. + * Gets the customer's licensing status to determine if they have access to a given app. For more + * information, see [Getting app installation and licensing + * details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api). * * Create a request for the method "customerLicense.get". * * This request holds the parameters needed by the appsmarket server. After setting any optional * parameters, call the {@link Get#execute()} method to invoke the remote operation. * - * @param applicationId Application Id - * @param customerId Customer Id + * @param applicationId The ID of the application. + * @param customerId The ID of the customer. * @return the request */ public Get get(java.lang.String applicationId, java.lang.String customerId) throws java.io.IOException { @@ -176,7 +178,9 @@ public class Get extends GSuiteMarketplaceAPIRequest * - * @param applicationId Application Id - * @param customerId Customer Id + * @param applicationId The ID of the application. + * @param customerId The ID of the customer. * @since 1.13 */ protected Get(java.lang.String applicationId, java.lang.String customerId) { @@ -260,33 +264,33 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) { return (Get) super.setUploadProtocol(uploadProtocol); } - /** Application Id */ + /** The ID of the application. */ @com.google.api.client.util.Key private java.lang.String applicationId; - /** Application Id + /** The ID of the application. */ public java.lang.String getApplicationId() { return applicationId; } - /** Application Id */ + /** The ID of the application. */ public Get setApplicationId(java.lang.String applicationId) { this.applicationId = applicationId; return this; } - /** Customer Id */ + /** The ID of the customer. */ @com.google.api.client.util.Key private java.lang.String customerId; - /** Customer Id + /** The ID of the customer. */ public java.lang.String getCustomerId() { return customerId; } - /** Customer Id */ + /** The ID of the customer. */ public Get setCustomerId(java.lang.String customerId) { this.customerId = customerId; return this; @@ -321,15 +325,17 @@ public UserLicense userLicense() { public class UserLicense { /** - * Gets the user's licensing status for their permission to use a given app. + * Gets the user's licensing status to determine if they have permission to use a given app. For + * more information, see [Getting app installation and licensing + * details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api). * * Create a request for the method "userLicense.get". * * This request holds the parameters needed by the appsmarket server. After setting any optional * parameters, call the {@link Get#execute()} method to invoke the remote operation. * - * @param applicationId Application Id - * @param userId User Id + * @param applicationId The ID of the application. + * @param userId The ID of the user. * @return the request */ public Get get(java.lang.String applicationId, java.lang.String userId) throws java.io.IOException { @@ -343,7 +349,9 @@ public class Get extends GSuiteMarketplaceAPIRequest * - * @param applicationId Application Id - * @param userId User Id + * @param applicationId The ID of the application. + * @param userId The ID of the user. * @since 1.13 */ protected Get(java.lang.String applicationId, java.lang.String userId) { @@ -427,33 +435,33 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) { return (Get) super.setUploadProtocol(uploadProtocol); } - /** Application Id */ + /** The ID of the application. */ @com.google.api.client.util.Key private java.lang.String applicationId; - /** Application Id + /** The ID of the application. */ public java.lang.String getApplicationId() { return applicationId; } - /** Application Id */ + /** The ID of the application. */ public Get setApplicationId(java.lang.String applicationId) { this.applicationId = applicationId; return this; } - /** User Id */ + /** The ID of the user. */ @com.google.api.client.util.Key private java.lang.String userId; - /** User Id + /** The ID of the user. */ public java.lang.String getUserId() { return userId; } - /** User Id */ + /** The ID of the user. */ public Get setUserId(java.lang.String userId) { this.userId = userId; return this; diff --git a/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/CustomerLicense.java b/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/CustomerLicense.java index 4293b4ae27a..92dabe751a6 100644 --- a/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/CustomerLicense.java +++ b/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/CustomerLicense.java @@ -59,7 +59,7 @@ public final class CustomerLicense extends com.google.api.client.json.GenericJso private java.lang.String id; /** - * The type of API resource. This is always appsmarket#customerLicense. + * The type of API resource. This is always `appsmarket#customerLicense`. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -67,8 +67,8 @@ public final class CustomerLicense extends com.google.api.client.json.GenericJso /** * The customer's license status. One of: - `ACTIVE`: The customer has a valid license. - - * `UNLICENSED`: There is no license: either this customer has never installed your application, - * or else has deleted it. + * `UNLICENSED`: There is no license. Either this customer has never installed your application or + * has deleted it. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -143,7 +143,7 @@ public CustomerLicense setId(java.lang.String id) { } /** - * The type of API resource. This is always appsmarket#customerLicense. + * The type of API resource. This is always `appsmarket#customerLicense`. * @return value or {@code null} for none */ public java.lang.String getKind() { @@ -151,7 +151,7 @@ public java.lang.String getKind() { } /** - * The type of API resource. This is always appsmarket#customerLicense. + * The type of API resource. This is always `appsmarket#customerLicense`. * @param kind kind or {@code null} for none */ public CustomerLicense setKind(java.lang.String kind) { @@ -161,8 +161,8 @@ public CustomerLicense setKind(java.lang.String kind) { /** * The customer's license status. One of: - `ACTIVE`: The customer has a valid license. - - * `UNLICENSED`: There is no license: either this customer has never installed your application, - * or else has deleted it. + * `UNLICENSED`: There is no license. Either this customer has never installed your application or + * has deleted it. * @return value or {@code null} for none */ public java.lang.String getState() { @@ -171,8 +171,8 @@ public java.lang.String getState() { /** * The customer's license status. One of: - `ACTIVE`: The customer has a valid license. - - * `UNLICENSED`: There is no license: either this customer has never installed your application, - * or else has deleted it. + * `UNLICENSED`: There is no license. Either this customer has never installed your application or + * has deleted it. * @param state state or {@code null} for none */ public CustomerLicense setState(java.lang.String state) { diff --git a/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/UserLicense.java b/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/UserLicense.java index 3c76666dbe9..3277b6844d1 100644 --- a/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/UserLicense.java +++ b/clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/UserLicense.java @@ -59,14 +59,14 @@ public final class UserLicense extends com.google.api.client.json.GenericJson { private java.lang.Boolean enabled; /** - * The ID of user license. + * The ID of the user license. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String id; /** - * The type of API resource. This is always appsmarket#userLicense. + * The type of API resource. This is always `appsmarket#userLicense`. * The value may be {@code null}. */ @com.google.api.client.util.Key @@ -158,7 +158,7 @@ public UserLicense setEnabled(java.lang.Boolean enabled) { } /** - * The ID of user license. + * The ID of the user license. * @return value or {@code null} for none */ public java.lang.String getId() { @@ -166,7 +166,7 @@ public java.lang.String getId() { } /** - * The ID of user license. + * The ID of the user license. * @param id id or {@code null} for none */ public UserLicense setId(java.lang.String id) { @@ -175,7 +175,7 @@ public UserLicense setId(java.lang.String id) { } /** - * The type of API resource. This is always appsmarket#userLicense. + * The type of API resource. This is always `appsmarket#userLicense`. * @return value or {@code null} for none */ public java.lang.String getKind() { @@ -183,7 +183,7 @@ public java.lang.String getKind() { } /** - * The type of API resource. This is always appsmarket#userLicense. + * The type of API resource. This is always `appsmarket#userLicense`. * @param kind kind or {@code null} for none */ public UserLicense setKind(java.lang.String kind) { diff --git a/clients/google-api-services-appsmarket/v2/2.0.0/pom.xml b/clients/google-api-services-appsmarket/v2/2.0.0/pom.xml index f7784b54ca0..c86ddea9703 100644 --- a/clients/google-api-services-appsmarket/v2/2.0.0/pom.xml +++ b/clients/google-api-services-appsmarket/v2/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-appsmarket - v2-rev20251217-2.0.0 - Google Workspace Marketplace API v2-rev20251217-2.0.0 + v2-rev20260209-2.0.0 + Google Workspace Marketplace API v2-rev20260209-2.0.0 jar 2011 diff --git a/clients/google-api-services-appsmarket/v2/README.md b/clients/google-api-services-appsmarket/v2/README.md index 3a9bd34c6b0..e9d276a0866 100644 --- a/clients/google-api-services-appsmarket/v2/README.md +++ b/clients/google-api-services-appsmarket/v2/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-appsmarket - v2-rev20251217-2.0.0 + v2-rev20260209-2.0.0 @@ -35,7 +35,7 @@ repositories { mavenCentral() } dependencies { - implementation 'com.google.apis:google-api-services-appsmarket:v2-rev20251217-2.0.0' + implementation 'com.google.apis:google-api-services-appsmarket:v2-rev20260209-2.0.0' } ```