Skip to content

Commit c34f12e

Browse files
1 parent e8f9790 commit c34f12e

File tree

4 files changed

+48
-6
lines changed

4 files changed

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

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

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,19 @@ public final class SigninDetail extends com.google.api.client.json.GenericJson {
5454
@com.google.api.client.util.Key
5555
private java.lang.String allowPersonalUsage;
5656

57+
/**
58+
* Optional. Whether the sign-in URL should be used by default for the enterprise. The
59+
* SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used for Google account
60+
* enrollment method. Only one of an enterprise's signinDetails can have defaultStatus set to
61+
* SIGNIN_DETAIL_IS_DEFAULT. If an Enterprise has at least one signinDetails and none of them have
62+
* defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected and
63+
* has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails specified for the
64+
* Enterprise then the Google Account device enrollment will fail.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private java.lang.String defaultStatus;
69+
5770
/**
5871
* A JSON string whose UTF-8 representation can be used to generate a QR code to enroll a device
5972
* with this enrollment token. To enroll a device using NFC, the NFC record must contain a
@@ -116,6 +129,35 @@ public SigninDetail setAllowPersonalUsage(java.lang.String allowPersonalUsage) {
116129
return this;
117130
}
118131

132+
/**
133+
* Optional. Whether the sign-in URL should be used by default for the enterprise. The
134+
* SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used for Google account
135+
* enrollment method. Only one of an enterprise's signinDetails can have defaultStatus set to
136+
* SIGNIN_DETAIL_IS_DEFAULT. If an Enterprise has at least one signinDetails and none of them have
137+
* defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected and
138+
* has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails specified for the
139+
* Enterprise then the Google Account device enrollment will fail.
140+
* @return value or {@code null} for none
141+
*/
142+
public java.lang.String getDefaultStatus() {
143+
return defaultStatus;
144+
}
145+
146+
/**
147+
* Optional. Whether the sign-in URL should be used by default for the enterprise. The
148+
* SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used for Google account
149+
* enrollment method. Only one of an enterprise's signinDetails can have defaultStatus set to
150+
* SIGNIN_DETAIL_IS_DEFAULT. If an Enterprise has at least one signinDetails and none of them have
151+
* defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected and
152+
* has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails specified for the
153+
* Enterprise then the Google Account device enrollment will fail.
154+
* @param defaultStatus defaultStatus or {@code null} for none
155+
*/
156+
public SigninDetail setDefaultStatus(java.lang.String defaultStatus) {
157+
this.defaultStatus = defaultStatus;
158+
return this;
159+
}
160+
119161
/**
120162
* A JSON string whose UTF-8 representation can be used to generate a QR code to enroll a device
121163
* with this enrollment token. To enroll a device using NFC, the NFC record must contain a

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

0 commit comments

Comments
 (0)