Skip to content

Commit 46a8f6c

Browse files
1 parent e04eb2d commit 46a8f6c

File tree

13 files changed

+34
-30
lines changed

13 files changed

+34
-30
lines changed

clients/google-api-services-merchantapi/accounts_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-merchantapi</artifactId>
25-
<version>accounts_v1-rev20250826-2.0.0</version>
25+
<version>accounts_v1-rev20250830-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-merchantapi:accounts_v1-rev20250826-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20250830-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/Merchant.java

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7737,7 +7737,7 @@ public BatchCreate set(String parameterName, Object value) {
77377737
* This request holds the parameters needed by the merchantapi server. After setting any optional
77387738
* parameters, call the {@link BatchDelete#execute()} method to invoke the remote operation.
77397739
*
7740-
* @param parent Required. The account to create a region for. Format: `accounts/{account}`
7740+
* @param parent Required. The account to delete one or more regions from. Format: `accounts/{account}`
77417741
* @param content the {@link com.google.api.services.merchantapi.accounts_v1.model.BatchDeleteRegionsRequest}
77427742
* @return the request
77437743
*/
@@ -7766,7 +7766,7 @@ public class BatchDelete extends MerchantRequest<com.google.api.services.merchan
77667766
* BatchDelete#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
77677767
* must be called to initialize this instance immediately after invoking the constructor. </p>
77687768
*
7769-
* @param parent Required. The account to create a region for. Format: `accounts/{account}`
7769+
* @param parent Required. The account to delete one or more regions from. Format: `accounts/{account}`
77707770
* @param content the {@link com.google.api.services.merchantapi.accounts_v1.model.BatchDeleteRegionsRequest}
77717771
* @since 1.13
77727772
*/
@@ -7835,17 +7835,21 @@ public BatchDelete setUploadProtocol(java.lang.String uploadProtocol) {
78357835
return (BatchDelete) super.setUploadProtocol(uploadProtocol);
78367836
}
78377837

7838-
/** Required. The account to create a region for. Format: `accounts/{account}` */
7838+
/**
7839+
* Required. The account to delete one or more regions from. Format: `accounts/{account}`
7840+
*/
78397841
@com.google.api.client.util.Key
78407842
private java.lang.String parent;
78417843

7842-
/** Required. The account to create a region for. Format: `accounts/{account}`
7844+
/** Required. The account to delete one or more regions from. Format: `accounts/{account}`
78437845
*/
78447846
public java.lang.String getParent() {
78457847
return parent;
78467848
}
78477849

7848-
/** Required. The account to create a region for. Format: `accounts/{account}` */
7850+
/**
7851+
* Required. The account to delete one or more regions from. Format: `accounts/{account}`
7852+
*/
78497853
public BatchDelete setParent(java.lang.String parent) {
78507854
if (!getSuppressPatternChecks()) {
78517855
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/model/BatchDeleteRegionsRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
public final class BatchDeleteRegionsRequest extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Required. The names of the regions to delete. A maximum of 1000 regions can be deleted in a
33+
* Required. The names of the regions to delete. A maximum of 100 regions can be deleted in a
3434
* batch.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.util.List<DeleteRegionRequest> requests;
3939

4040
/**
41-
* Required. The names of the regions to delete. A maximum of 1000 regions can be deleted in a
41+
* Required. The names of the regions to delete. A maximum of 100 regions can be deleted in a
4242
* batch.
4343
* @return value or {@code null} for none
4444
*/
@@ -47,7 +47,7 @@ public java.util.List<DeleteRegionRequest> getRequests() {
4747
}
4848

4949
/**
50-
* Required. The names of the regions to delete. A maximum of 1000 regions can be deleted in a
50+
* Required. The names of the regions to delete. A maximum of 100 regions can be deleted in a
5151
* batch.
5252
* @param requests requests or {@code null} for none
5353
*/

clients/google-api-services-merchantapi/accounts_v1/2.0.0/com/google/api/services/merchantapi/accounts_v1/model/Program.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
* for adding functionality to a Merchant Center accounts. A typical example of this is the [Free
2222
* product listings](https://support.google.com/merchants/answer/13889434) program, which enables
2323
* products from a business's store to be shown across Google for free. The following list is the
24-
* available set of program resource IDs accessible through the API: * `free-listings` * `shopping-
25-
* ads` * `youtube-shopping-checkout`
24+
* available set of program resource IDs accessible through the API: * `checkout` * `free-listings`
25+
* * `shopping-ads` * `youtube-shopping-checkout`
2626
*
2727
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2828
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_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-merchantapi</artifactId>
11-
<version>accounts_v1-rev20250826-2.0.0</version>
12-
<name>Merchant API accounts_v1-rev20250826-2.0.0</name>
11+
<version>accounts_v1-rev20250830-2.0.0</version>
12+
<name>Merchant API accounts_v1-rev20250830-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-merchantapi/accounts_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-merchantapi</artifactId>
25-
<version>accounts_v1-rev20250826-2.0.0</version>
25+
<version>accounts_v1-rev20250830-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-merchantapi:accounts_v1-rev20250826-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20250830-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
25-
<version>accounts_v1beta-rev20250826-2.0.0</version>
25+
<version>accounts_v1beta-rev20250830-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-merchantapi:accounts_v1beta-rev20250826-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20250830-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/accounts_v1beta/2.0.0/com/google/api/services/merchantapi/accounts_v1beta/model/Program.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
* for adding functionality to a Merchant Center accounts. A typical example of this is the [Free
2222
* product listings](https://support.google.com/merchants/answer/13889434) program, which enables
2323
* products from a business's store to be shown across Google for free. The following list is the
24-
* available set of program resource IDs accessible through the API: * `free-listings` * `shopping-
25-
* ads` * `youtube-shopping-checkout`
24+
* available set of program resource IDs accessible through the API: * `checkout` * `free-listings`
25+
* * `shopping-ads` * `youtube-shopping-checkout`
2626
*
2727
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2828
* transmitted over HTTP when working with the Merchant API. For a detailed explanation see:

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
11-
<version>accounts_v1beta-rev20250826-2.0.0</version>
12-
<name>Merchant API accounts_v1beta-rev20250826-2.0.0</name>
11+
<version>accounts_v1beta-rev20250830-2.0.0</version>
12+
<name>Merchant API accounts_v1beta-rev20250830-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-merchantapi/accounts_v1beta/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-merchantapi</artifactId>
25-
<version>accounts_v1beta-rev20250826-2.0.0</version>
25+
<version>accounts_v1beta-rev20250830-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-merchantapi:accounts_v1beta-rev20250826-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20250830-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)