Skip to content

Commit d2277f1

Browse files
1 parent 05d9653 commit d2277f1

File tree

13 files changed

+517
-34
lines changed

13 files changed

+517
-34
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-rev20250909-2.0.0</version>
25+
<version>accounts_v1-rev20251002-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-rev20250909-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251002-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: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -256,10 +256,12 @@ public CreateAndConfigure set(String parameterName, Object value) {
256256
}
257257
/**
258258
* Deletes the specified account regardless of its type: standalone, advanced account or sub-
259-
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts. Executing
260-
* this method requires admin access. The deletion succeeds only if the account does not provide
261-
* services to any other account and has no processed offers. You can use the `force` parameter to
262-
* override this.
259+
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts. This also
260+
* deletes the account's [developer registration
261+
* entity](/merchant/api/reference/rest/accounts_v1/accounts.developerRegistration) and any
262+
* associated GCP project to the account. Executing this method requires admin access. The deletion
263+
* succeeds only if the account does not provide services to any other account and has no processed
264+
* offers. You can use the `force` parameter to override this.
263265
*
264266
* Create a request for the method "accounts.delete".
265267
*
@@ -284,10 +286,12 @@ public class Delete extends MerchantRequest<com.google.api.services.merchantapi.
284286

285287
/**
286288
* Deletes the specified account regardless of its type: standalone, advanced account or sub-
287-
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts.
288-
* Executing this method requires admin access. The deletion succeeds only if the account does not
289-
* provide services to any other account and has no processed offers. You can use the `force`
290-
* parameter to override this.
289+
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts. This
290+
* also deletes the account's [developer registration
291+
* entity](/merchant/api/reference/rest/accounts_v1/accounts.developerRegistration) and any
292+
* associated GCP project to the account. Executing this method requires admin access. The
293+
* deletion succeeds only if the account does not provide services to any other account and has no
294+
* processed offers. You can use the `force` parameter to override this.
291295
*
292296
* Create a request for the method "accounts.delete".
293297
*

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-rev20250909-2.0.0</version>
12-
<name>Merchant API accounts_v1-rev20250909-2.0.0</name>
11+
<version>accounts_v1-rev20251002-2.0.0</version>
12+
<name>Merchant API accounts_v1-rev20251002-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-rev20250909-2.0.0</version>
25+
<version>accounts_v1-rev20251002-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-rev20250909-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1-rev20251002-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-rev20250909-2.0.0</version>
25+
<version>accounts_v1beta-rev20251002-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-rev20250909-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20251002-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -256,10 +256,12 @@ public CreateAndConfigure set(String parameterName, Object value) {
256256
}
257257
/**
258258
* Deletes the specified account regardless of its type: standalone, advanced account or sub-
259-
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts. Executing
260-
* this method requires admin access. The deletion succeeds only if the account does not provide
261-
* services to any other account and has no processed offers. You can use the `force` parameter to
262-
* override this.
259+
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts. This also
260+
* deletes the account's [developer registration
261+
* entity](/merchant/api/reference/rest/accounts_v1beta/accounts.developerRegistration) and any
262+
* associated GCP project to the account. Executing this method requires admin access. The deletion
263+
* succeeds only if the account does not provide services to any other account and has no processed
264+
* offers. You can use the `force` parameter to override this.
263265
*
264266
* Create a request for the method "accounts.delete".
265267
*
@@ -284,10 +286,12 @@ public class Delete extends MerchantRequest<com.google.api.services.merchantapi.
284286

285287
/**
286288
* Deletes the specified account regardless of its type: standalone, advanced account or sub-
287-
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts.
288-
* Executing this method requires admin access. The deletion succeeds only if the account does not
289-
* provide services to any other account and has no processed offers. You can use the `force`
290-
* parameter to override this.
289+
* account. Deleting an advanced account leads to the deletion of all of its sub-accounts. This
290+
* also deletes the account's [developer registration
291+
* entity](/merchant/api/reference/rest/accounts_v1beta/accounts.developerRegistration) and any
292+
* associated GCP project to the account. Executing this method requires admin access. The
293+
* deletion succeeds only if the account does not provide services to any other account and has no
294+
* processed offers. You can use the `force` parameter to override this.
291295
*
292296
* Create a request for the method "accounts.delete".
293297
*

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-rev20250909-2.0.0</version>
12-
<name>Merchant API accounts_v1beta-rev20250909-2.0.0</name>
11+
<version>accounts_v1beta-rev20251002-2.0.0</version>
12+
<name>Merchant API accounts_v1beta-rev20251002-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-rev20250909-2.0.0</version>
25+
<version>accounts_v1beta-rev20251002-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-rev20250909-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:accounts_v1beta-rev20251002-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-merchantapi/products_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>products_v1-rev20250811-2.0.0</version>
25+
<version>products_v1-rev20251002-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:products_v1-rev20250811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-merchantapi:products_v1-rev20251002-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)