Skip to content

Commit 20ce894

Browse files
chore: regenerate appsmarket client
1 parent 38c1764 commit 20ce894

File tree

6 files changed

+55
-48
lines changed

6 files changed

+55
-48
lines changed

clients/google-api-services-appsmarket/v2/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-appsmarket</artifactId>
25-
<version>v2-rev20251217-2.0.0</version>
25+
<version>v2-rev20260209-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-appsmarket:v2-rev20251217-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appsmarket:v2-rev20260209-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/GSuiteMarketplaceAPI.java

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class GSuiteMarketplaceAPI extends com.google.api.client.googleapis.servi
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -154,15 +154,17 @@ public CustomerLicense customerLicense() {
154154
public class CustomerLicense {
155155

156156
/**
157-
* Gets the status of a license for a customer to determine if they have access for a given app.
157+
* Gets the customer's licensing status to determine if they have access to a given app. For more
158+
* information, see [Getting app installation and licensing
159+
* details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api).
158160
*
159161
* Create a request for the method "customerLicense.get".
160162
*
161163
* This request holds the parameters needed by the appsmarket server. After setting any optional
162164
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
163165
*
164-
* @param applicationId Application Id
165-
* @param customerId Customer Id
166+
* @param applicationId The ID of the application.
167+
* @param customerId The ID of the customer.
166168
* @return the request
167169
*/
168170
public Get get(java.lang.String applicationId, java.lang.String customerId) throws java.io.IOException {
@@ -176,7 +178,9 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
176178
private static final String REST_PATH = "appsmarket/v2/customerLicense/{applicationId}/{customerId}";
177179

178180
/**
179-
* Gets the status of a license for a customer to determine if they have access for a given app.
181+
* Gets the customer's licensing status to determine if they have access to a given app. For more
182+
* information, see [Getting app installation and licensing
183+
* details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api).
180184
*
181185
* Create a request for the method "customerLicense.get".
182186
*
@@ -185,8 +189,8 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
185189
* {@link Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
186190
* must be called to initialize this instance immediately after invoking the constructor. </p>
187191
*
188-
* @param applicationId Application Id
189-
* @param customerId Customer Id
192+
* @param applicationId The ID of the application.
193+
* @param customerId The ID of the customer.
190194
* @since 1.13
191195
*/
192196
protected Get(java.lang.String applicationId, java.lang.String customerId) {
@@ -260,33 +264,33 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {
260264
return (Get) super.setUploadProtocol(uploadProtocol);
261265
}
262266

263-
/** Application Id */
267+
/** The ID of the application. */
264268
@com.google.api.client.util.Key
265269
private java.lang.String applicationId;
266270

267-
/** Application Id
271+
/** The ID of the application.
268272
*/
269273
public java.lang.String getApplicationId() {
270274
return applicationId;
271275
}
272276

273-
/** Application Id */
277+
/** The ID of the application. */
274278
public Get setApplicationId(java.lang.String applicationId) {
275279
this.applicationId = applicationId;
276280
return this;
277281
}
278282

279-
/** Customer Id */
283+
/** The ID of the customer. */
280284
@com.google.api.client.util.Key
281285
private java.lang.String customerId;
282286

283-
/** Customer Id
287+
/** The ID of the customer.
284288
*/
285289
public java.lang.String getCustomerId() {
286290
return customerId;
287291
}
288292

289-
/** Customer Id */
293+
/** The ID of the customer. */
290294
public Get setCustomerId(java.lang.String customerId) {
291295
this.customerId = customerId;
292296
return this;
@@ -321,15 +325,17 @@ public UserLicense userLicense() {
321325
public class UserLicense {
322326

323327
/**
324-
* Gets the user's licensing status for their permission to use a given app.
328+
* Gets the user's licensing status to determine if they have permission to use a given app. For
329+
* more information, see [Getting app installation and licensing
330+
* details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api).
325331
*
326332
* Create a request for the method "userLicense.get".
327333
*
328334
* This request holds the parameters needed by the appsmarket server. After setting any optional
329335
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
330336
*
331-
* @param applicationId Application Id
332-
* @param userId User Id
337+
* @param applicationId The ID of the application.
338+
* @param userId The ID of the user.
333339
* @return the request
334340
*/
335341
public Get get(java.lang.String applicationId, java.lang.String userId) throws java.io.IOException {
@@ -343,7 +349,9 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
343349
private static final String REST_PATH = "appsmarket/v2/userLicense/{applicationId}/{userId}";
344350

345351
/**
346-
* Gets the user's licensing status for their permission to use a given app.
352+
* Gets the user's licensing status to determine if they have permission to use a given app. For
353+
* more information, see [Getting app installation and licensing
354+
* details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api).
347355
*
348356
* Create a request for the method "userLicense.get".
349357
*
@@ -352,8 +360,8 @@ public class Get extends GSuiteMarketplaceAPIRequest<com.google.api.services.app
352360
* {@link Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
353361
* must be called to initialize this instance immediately after invoking the constructor. </p>
354362
*
355-
* @param applicationId Application Id
356-
* @param userId User Id
363+
* @param applicationId The ID of the application.
364+
* @param userId The ID of the user.
357365
* @since 1.13
358366
*/
359367
protected Get(java.lang.String applicationId, java.lang.String userId) {
@@ -427,33 +435,33 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {
427435
return (Get) super.setUploadProtocol(uploadProtocol);
428436
}
429437

430-
/** Application Id */
438+
/** The ID of the application. */
431439
@com.google.api.client.util.Key
432440
private java.lang.String applicationId;
433441

434-
/** Application Id
442+
/** The ID of the application.
435443
*/
436444
public java.lang.String getApplicationId() {
437445
return applicationId;
438446
}
439447

440-
/** Application Id */
448+
/** The ID of the application. */
441449
public Get setApplicationId(java.lang.String applicationId) {
442450
this.applicationId = applicationId;
443451
return this;
444452
}
445453

446-
/** User Id */
454+
/** The ID of the user. */
447455
@com.google.api.client.util.Key
448456
private java.lang.String userId;
449457

450-
/** User Id
458+
/** The ID of the user.
451459
*/
452460
public java.lang.String getUserId() {
453461
return userId;
454462
}
455463

456-
/** User Id */
464+
/** The ID of the user. */
457465
public Get setUserId(java.lang.String userId) {
458466
this.userId = userId;
459467
return this;
@@ -499,8 +507,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
499507
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
500508
* <li>Android: {@code newCompatibleTransport} from
501509
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
502-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
503-
* </li>
510+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
504511
* </ul>
505512
* @param jsonFactory JSON factory, which may be:
506513
* <ul>

clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/CustomerLicense.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,16 @@ public final class CustomerLicense extends com.google.api.client.json.GenericJso
5959
private java.lang.String id;
6060

6161
/**
62-
* The type of API resource. This is always appsmarket#customerLicense.
62+
* The type of API resource. This is always `appsmarket#customerLicense`.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
6666
private java.lang.String kind;
6767

6868
/**
6969
* The customer's license status. One of: - `ACTIVE`: The customer has a valid license. -
70-
* `UNLICENSED`: There is no license: either this customer has never installed your application,
71-
* or else has deleted it.
70+
* `UNLICENSED`: There is no license. Either this customer has never installed your application or
71+
* has deleted it.
7272
* The value may be {@code null}.
7373
*/
7474
@com.google.api.client.util.Key
@@ -143,15 +143,15 @@ public CustomerLicense setId(java.lang.String id) {
143143
}
144144

145145
/**
146-
* The type of API resource. This is always appsmarket#customerLicense.
146+
* The type of API resource. This is always `appsmarket#customerLicense`.
147147
* @return value or {@code null} for none
148148
*/
149149
public java.lang.String getKind() {
150150
return kind;
151151
}
152152

153153
/**
154-
* The type of API resource. This is always appsmarket#customerLicense.
154+
* The type of API resource. This is always `appsmarket#customerLicense`.
155155
* @param kind kind or {@code null} for none
156156
*/
157157
public CustomerLicense setKind(java.lang.String kind) {
@@ -161,8 +161,8 @@ public CustomerLicense setKind(java.lang.String kind) {
161161

162162
/**
163163
* The customer's license status. One of: - `ACTIVE`: The customer has a valid license. -
164-
* `UNLICENSED`: There is no license: either this customer has never installed your application,
165-
* or else has deleted it.
164+
* `UNLICENSED`: There is no license. Either this customer has never installed your application or
165+
* has deleted it.
166166
* @return value or {@code null} for none
167167
*/
168168
public java.lang.String getState() {
@@ -171,8 +171,8 @@ public java.lang.String getState() {
171171

172172
/**
173173
* The customer's license status. One of: - `ACTIVE`: The customer has a valid license. -
174-
* `UNLICENSED`: There is no license: either this customer has never installed your application,
175-
* or else has deleted it.
174+
* `UNLICENSED`: There is no license. Either this customer has never installed your application or
175+
* has deleted it.
176176
* @param state state or {@code null} for none
177177
*/
178178
public CustomerLicense setState(java.lang.String state) {

clients/google-api-services-appsmarket/v2/2.0.0/com/google/api/services/appsmarket/v2/model/UserLicense.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ public final class UserLicense extends com.google.api.client.json.GenericJson {
5959
private java.lang.Boolean enabled;
6060

6161
/**
62-
* The ID of user license.
62+
* The ID of the user license.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
6666
private java.lang.String id;
6767

6868
/**
69-
* The type of API resource. This is always appsmarket#userLicense.
69+
* The type of API resource. This is always `appsmarket#userLicense`.
7070
* The value may be {@code null}.
7171
*/
7272
@com.google.api.client.util.Key
@@ -158,15 +158,15 @@ public UserLicense setEnabled(java.lang.Boolean enabled) {
158158
}
159159

160160
/**
161-
* The ID of user license.
161+
* The ID of the user license.
162162
* @return value or {@code null} for none
163163
*/
164164
public java.lang.String getId() {
165165
return id;
166166
}
167167

168168
/**
169-
* The ID of user license.
169+
* The ID of the user license.
170170
* @param id id or {@code null} for none
171171
*/
172172
public UserLicense setId(java.lang.String id) {
@@ -175,15 +175,15 @@ public UserLicense setId(java.lang.String id) {
175175
}
176176

177177
/**
178-
* The type of API resource. This is always appsmarket#userLicense.
178+
* The type of API resource. This is always `appsmarket#userLicense`.
179179
* @return value or {@code null} for none
180180
*/
181181
public java.lang.String getKind() {
182182
return kind;
183183
}
184184

185185
/**
186-
* The type of API resource. This is always appsmarket#userLicense.
186+
* The type of API resource. This is always `appsmarket#userLicense`.
187187
* @param kind kind or {@code null} for none
188188
*/
189189
public UserLicense setKind(java.lang.String kind) {

clients/google-api-services-appsmarket/v2/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-appsmarket</artifactId>
11-
<version>v2-rev20251217-2.0.0</version>
12-
<name>Google Workspace Marketplace API v2-rev20251217-2.0.0</name>
11+
<version>v2-rev20260209-2.0.0</version>
12+
<name>Google Workspace Marketplace API v2-rev20260209-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-appsmarket/v2/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-appsmarket</artifactId>
25-
<version>v2-rev20251217-2.0.0</version>
25+
<version>v2-rev20260209-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-appsmarket:v2-rev20251217-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appsmarket:v2-rev20260209-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)