Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-appsmarket/v2/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-appsmarket</artifactId>
<version>v2-rev20251217-2.0.0</version>
<version>v2-rev20260209-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -176,7 +178,9 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
private static final String REST_PATH = "appsmarket/v2/customerLicense/{applicationId}/{customerId}";

/**
* 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".
*
Expand All @@ -185,8 +189,8 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
* {@link Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
* must be called to initialize this instance immediately after invoking the constructor. </p>
*
* @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) {
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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 {
Expand All @@ -343,7 +349,9 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
private static final String REST_PATH = "appsmarket/v2/userLicense/{applicationId}/{userId}";

/**
* 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".
*
Expand All @@ -352,8 +360,8 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
* {@link Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
* must be called to initialize this instance immediately after invoking the constructor. </p>
*
* @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) {
Expand Down Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@ 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
private 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.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -143,15 +143,15 @@ 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() {
return kind;
}

/**
* 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) {
Expand All @@ -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() {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -158,15 +158,15 @@ 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() {
return id;
}

/**
* 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) {
Expand All @@ -175,15 +175,15 @@ 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() {
return kind;
}

/**
* 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) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-appsmarket/v2/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-appsmarket</artifactId>
<version>v2-rev20251217-2.0.0</version>
<name>Google Workspace Marketplace API v2-rev20251217-2.0.0</name>
<version>v2-rev20260209-2.0.0</version>
<name>Google Workspace Marketplace API v2-rev20260209-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-appsmarket/v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-appsmarket</artifactId>
<version>v2-rev20251217-2.0.0</version>
<version>v2-rev20260209-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -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'
}
```

Expand Down