Skip to content

Commit dd0ea51

Browse files
1 parent b61101d commit dd0ea51

File tree

4 files changed

+78
-6
lines changed

4 files changed

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

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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ public final class Enterprise extends com.google.api.client.json.GenericJson {
5959
@com.google.api.client.util.Key
6060
private java.lang.String enterpriseDisplayName;
6161

62+
/**
63+
* Output only. The type of the enterprise.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private java.lang.String enterpriseType;
68+
6269
/**
6370
* Settings for Google-provided user authentication.
6471
* The value may be {@code null}.
@@ -75,6 +82,20 @@ public final class Enterprise extends com.google.api.client.json.GenericJson {
7582
@com.google.api.client.util.Key
7683
private ExternalData logo;
7784

85+
/**
86+
* Output only. The type of managed Google domain.
87+
* The value may be {@code null}.
88+
*/
89+
@com.google.api.client.util.Key
90+
private java.lang.String managedGoogleDomainType;
91+
92+
/**
93+
* Output only. The type of a managed Google Play Accounts enterprise.
94+
* The value may be {@code null}.
95+
*/
96+
@com.google.api.client.util.Key
97+
private java.lang.String managedGooglePlayAccountsEnterpriseType;
98+
7899
/**
79100
* The name of the enterprise which is generated by the server during creation, in the form
80101
* enterprises/{enterpriseId}.
@@ -186,6 +207,23 @@ public Enterprise setEnterpriseDisplayName(java.lang.String enterpriseDisplayNam
186207
return this;
187208
}
188209

210+
/**
211+
* Output only. The type of the enterprise.
212+
* @return value or {@code null} for none
213+
*/
214+
public java.lang.String getEnterpriseType() {
215+
return enterpriseType;
216+
}
217+
218+
/**
219+
* Output only. The type of the enterprise.
220+
* @param enterpriseType enterpriseType or {@code null} for none
221+
*/
222+
public Enterprise setEnterpriseType(java.lang.String enterpriseType) {
223+
this.enterpriseType = enterpriseType;
224+
return this;
225+
}
226+
189227
/**
190228
* Settings for Google-provided user authentication.
191229
* @return value or {@code null} for none
@@ -224,6 +262,40 @@ public Enterprise setLogo(ExternalData logo) {
224262
return this;
225263
}
226264

265+
/**
266+
* Output only. The type of managed Google domain.
267+
* @return value or {@code null} for none
268+
*/
269+
public java.lang.String getManagedGoogleDomainType() {
270+
return managedGoogleDomainType;
271+
}
272+
273+
/**
274+
* Output only. The type of managed Google domain.
275+
* @param managedGoogleDomainType managedGoogleDomainType or {@code null} for none
276+
*/
277+
public Enterprise setManagedGoogleDomainType(java.lang.String managedGoogleDomainType) {
278+
this.managedGoogleDomainType = managedGoogleDomainType;
279+
return this;
280+
}
281+
282+
/**
283+
* Output only. The type of a managed Google Play Accounts enterprise.
284+
* @return value or {@code null} for none
285+
*/
286+
public java.lang.String getManagedGooglePlayAccountsEnterpriseType() {
287+
return managedGooglePlayAccountsEnterpriseType;
288+
}
289+
290+
/**
291+
* Output only. The type of a managed Google Play Accounts enterprise.
292+
* @param managedGooglePlayAccountsEnterpriseType managedGooglePlayAccountsEnterpriseType or {@code null} for none
293+
*/
294+
public Enterprise setManagedGooglePlayAccountsEnterpriseType(java.lang.String managedGooglePlayAccountsEnterpriseType) {
295+
this.managedGooglePlayAccountsEnterpriseType = managedGooglePlayAccountsEnterpriseType;
296+
return this;
297+
}
298+
227299
/**
228300
* The name of the enterprise which is generated by the server during creation, in the form
229301
* enterprises/{enterpriseId}.

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-rev20250123-2.0.0</version>
12-
<name>Android Management API v1-rev20250123-2.0.0</name>
11+
<version>v1-rev20250213-2.0.0</version>
12+
<name>Android Management API v1-rev20250213-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-rev20250123-2.0.0</version>
25+
<version>v1-rev20250213-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-rev20250123-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250213-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)