Skip to content

Commit 710b37e

Browse files
1 parent 487e327 commit 710b37e

File tree

4 files changed

+43
-6
lines changed

4 files changed

+43
-6
lines changed

clients/google-api-services-androidmanagement/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-androidmanagement</artifactId>
25-
<version>v1-rev20241204-2.0.0</version>
25+
<version>v1-rev20250106-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-androidmanagement:v1-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250106-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-androidmanagement/v1/2.0.0/com/google/api/services/androidmanagement/v1/AndroidManagement.java

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5425,6 +5425,43 @@ public Create setAdminEmail(java.lang.String adminEmail) {
54255425
return this;
54265426
}
54275427

5428+
/**
5429+
* Optional. A list of domains that are permitted for the admin email. The IT admin cannot
5430+
* enter an email address with a domain name that is not in this list. Subdomains of domains
5431+
* in this list are not allowed but can be allowed by adding a second entry which has *.
5432+
* prefixed to the domain name (e.g. *.example.com). If the field is not present or is an
5433+
* empty list then the IT admin is free to use any valid domain name. Personal email domains
5434+
* are always allowed, but will result in the creation of a managed Google Play Accounts
5435+
* enterprise.
5436+
*/
5437+
@com.google.api.client.util.Key
5438+
private java.util.List<java.lang.String> allowedDomains;
5439+
5440+
/** Optional. A list of domains that are permitted for the admin email. The IT admin cannot enter an
5441+
email address with a domain name that is not in this list. Subdomains of domains in this list are
5442+
not allowed but can be allowed by adding a second entry which has *. prefixed to the domain name
5443+
(e.g. *.example.com). If the field is not present or is an empty list then the IT admin is free to
5444+
use any valid domain name. Personal email domains are always allowed, but will result in the
5445+
creation of a managed Google Play Accounts enterprise.
5446+
*/
5447+
public java.util.List<java.lang.String> getAllowedDomains() {
5448+
return allowedDomains;
5449+
}
5450+
5451+
/**
5452+
* Optional. A list of domains that are permitted for the admin email. The IT admin cannot
5453+
* enter an email address with a domain name that is not in this list. Subdomains of domains
5454+
* in this list are not allowed but can be allowed by adding a second entry which has *.
5455+
* prefixed to the domain name (e.g. *.example.com). If the field is not present or is an
5456+
* empty list then the IT admin is free to use any valid domain name. Personal email domains
5457+
* are always allowed, but will result in the creation of a managed Google Play Accounts
5458+
* enterprise.
5459+
*/
5460+
public Create setAllowedDomains(java.util.List<java.lang.String> allowedDomains) {
5461+
this.allowedDomains = allowedDomains;
5462+
return this;
5463+
}
5464+
54285465
/**
54295466
* The callback URL that the admin will be redirected to after successfully creating an
54305467
* enterprise. Before redirecting there the system will add a query parameter to this URL

clients/google-api-services-androidmanagement/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-androidmanagement</artifactId>
11-
<version>v1-rev20241204-2.0.0</version>
12-
<name>Android Management API v1-rev20241204-2.0.0</name>
11+
<version>v1-rev20250106-2.0.0</version>
12+
<name>Android Management API v1-rev20250106-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-androidmanagement/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-androidmanagement</artifactId>
25-
<version>v1-rev20241204-2.0.0</version>
25+
<version>v1-rev20250106-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-androidmanagement:v1-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250106-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)