Skip to content

Commit ec5a449

Browse files
1 parent 38e04bf commit ec5a449

File tree

4 files changed

+49
-9
lines changed

4 files changed

+49
-9
lines changed

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

clients/google-api-services-androidenterprise/v1/2.0.0/com/google/api/services/androidenterprise/AndroidEnterprise.java

Lines changed: 43 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1878,27 +1878,67 @@ public GenerateSignupUrl setUploadProtocol(java.lang.String uploadProtocol) {
18781878

18791879
/**
18801880
* Optional. Email address used to prefill the admin field of the enterprise signup form. This
1881-
* value is a hint only and can be altered by the user.
1881+
* value is a hint only and can be altered by the user. If `allowedDomains` is non-empty then
1882+
* this must belong to one of the `allowedDomains`.
18821883
*/
18831884
@com.google.api.client.util.Key
18841885
private java.lang.String adminEmail;
18851886

18861887
/** Optional. Email address used to prefill the admin field of the enterprise signup form. This value
1887-
is a hint only and can be altered by the user.
1888+
is a hint only and can be altered by the user. If `allowedDomains` is non-empty then this must
1889+
belong to one of the `allowedDomains`.
18881890
*/
18891891
public java.lang.String getAdminEmail() {
18901892
return adminEmail;
18911893
}
18921894

18931895
/**
18941896
* Optional. Email address used to prefill the admin field of the enterprise signup form. This
1895-
* value is a hint only and can be altered by the user.
1897+
* value is a hint only and can be altered by the user. If `allowedDomains` is non-empty then
1898+
* this must belong to one of the `allowedDomains`.
18961899
*/
18971900
public GenerateSignupUrl setAdminEmail(java.lang.String adminEmail) {
18981901
this.adminEmail = adminEmail;
18991902
return this;
19001903
}
19011904

1905+
/**
1906+
* Optional. A list of domains that are permitted for the admin email. The IT admin cannot
1907+
* enter an email address with a domain name that is not in this list. Subdomains of domains
1908+
* in this list are not allowed but can be allowed by adding a second entry which has `*.`
1909+
* prefixed to the domain name (e.g. *.example.com). If the field is not present or is an
1910+
* empty list then the IT admin is free to use any valid domain name. Personal email domains
1911+
* are always allowed, but will result in the creation of a managed Google Play Accounts
1912+
* enterprise.
1913+
*/
1914+
@com.google.api.client.util.Key
1915+
private java.util.List<java.lang.String> allowedDomains;
1916+
1917+
/** Optional. A list of domains that are permitted for the admin email. The IT admin cannot enter an
1918+
email address with a domain name that is not in this list. Subdomains of domains in this list are
1919+
not allowed but can be allowed by adding a second entry which has `*.` prefixed to the domain name
1920+
(e.g. *.example.com). If the field is not present or is an empty list then the IT admin is free to
1921+
use any valid domain name. Personal email domains are always allowed, but will result in the
1922+
creation of a managed Google Play Accounts enterprise.
1923+
*/
1924+
public java.util.List<java.lang.String> getAllowedDomains() {
1925+
return allowedDomains;
1926+
}
1927+
1928+
/**
1929+
* Optional. A list of domains that are permitted for the admin email. The IT admin cannot
1930+
* enter an email address with a domain name that is not in this list. Subdomains of domains
1931+
* in this list are not allowed but can be allowed by adding a second entry which has `*.`
1932+
* prefixed to the domain name (e.g. *.example.com). If the field is not present or is an
1933+
* empty list then the IT admin is free to use any valid domain name. Personal email domains
1934+
* are always allowed, but will result in the creation of a managed Google Play Accounts
1935+
* enterprise.
1936+
*/
1937+
public GenerateSignupUrl setAllowedDomains(java.util.List<java.lang.String> allowedDomains) {
1938+
this.allowedDomains = allowedDomains;
1939+
return this;
1940+
}
1941+
19021942
/**
19031943
* The callback URL to which the Admin will be redirected after successfully creating an
19041944
* enterprise. Before redirecting there the system will add a single query parameter to this

clients/google-api-services-androidenterprise/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-androidenterprise</artifactId>
11-
<version>v1-rev20250102-2.0.0</version>
12-
<name>Google Play EMM API v1-rev20250102-2.0.0</name>
11+
<version>v1-rev20250109-2.0.0</version>
12+
<name>Google Play EMM API v1-rev20250109-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)