Skip to content

Commit 0077748

Browse files
authoredJun 4, 2024··
feat(all): auto-regenerate discovery clients (#2622)
1 parent c7f1614 commit 0077748

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+8049
-1486
lines changed
 

‎androidmanagement/v1/androidmanagement-api.json

+49-5
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@
11681168
}
11691169
}
11701170
},
1171-
"revision": "20240516",
1171+
"revision": "20240531",
11721172
"rootUrl": "https://androidmanagement.googleapis.com/",
11731173
"schemas": {
11741174
"AdbShellCommandEvent": {
@@ -1811,6 +1811,20 @@
18111811
},
18121812
"type": "array"
18131813
},
1814+
"userControlSettings": {
1815+
"description": "Optional. Specifies whether user control is permitted for the app. User control includes user actions like force-stopping and clearing app data. Supported on Android 11 and above.",
1816+
"enum": [
1817+
"USER_CONTROL_SETTINGS_UNSPECIFIED",
1818+
"USER_CONTROL_ALLOWED",
1819+
"USER_CONTROL_DISALLOWED"
1820+
],
1821+
"enumDescriptions": [
1822+
"Uses the default behaviour of the app to determine if user control is allowed or disallowed. For most apps, user control is allowed by default, but for some critical apps such as companion apps (extensionConfig set to true), kiosk apps and other critical system apps, user control is disallowed.",
1823+
"User control is allowed for the app. Kiosk apps can use this to allow user control.",
1824+
"User control is disallowed for the app. API_LEVEL is reported if the Android version is less than 11."
1825+
],
1826+
"type": "string"
1827+
},
18141828
"workProfileWidgets": {
18151829
"description": "Specifies whether the app installed in the work profile is allowed to add widgets to the home screen.",
18161830
"enum": [
@@ -3012,12 +3026,14 @@
30123026
"enum": [
30133027
"ALLOW_PERSONAL_USAGE_UNSPECIFIED",
30143028
"PERSONAL_USAGE_ALLOWED",
3015-
"PERSONAL_USAGE_DISALLOWED"
3029+
"PERSONAL_USAGE_DISALLOWED",
3030+
"PERSONAL_USAGE_DISALLOWED_USERLESS"
30163031
],
30173032
"enumDescriptions": [
30183033
"Personal usage restriction is not specified",
30193034
"Personal usage is allowed",
3020-
"Personal usage is disallowed"
3035+
"Personal usage is disallowed",
3036+
"Device is not associated with a single user, and thus both personal usage and corporate identity authentication are not expected."
30213037
],
30223038
"type": "string"
30233039
},
@@ -3107,6 +3123,10 @@
31073123
"description": "The name of the enterprise displayed to users. This field has a maximum length of 100 characters.",
31083124
"type": "string"
31093125
},
3126+
"googleAuthenticationSettings": {
3127+
"$ref": "GoogleAuthenticationSettings",
3128+
"description": "Settings for Google-provided user authentication."
3129+
},
31103130
"logo": {
31113131
"$ref": "ExternalData",
31123132
"description": "An image displayed as a logo during device provisioning. Supported types are: image/bmp, image/gif, image/x-ico, image/jpeg, image/png, image/webp, image/vnd.wap.wbmp, image/x-adobe-dng."
@@ -3211,6 +3231,28 @@
32113231
},
32123232
"type": "object"
32133233
},
3234+
"GoogleAuthenticationSettings": {
3235+
"description": "Contains settings for Google-provided user authentication.",
3236+
"id": "GoogleAuthenticationSettings",
3237+
"properties": {
3238+
"googleAuthenticationRequired": {
3239+
"description": "Output only. Whether users need to be authenticated by Google during the enrollment process. IT admin can specify if Google authentication is enabled for the enterprise for knowledge worker devices. This value can be set only via the Google Admin Console. Google authentication can be used with signin_url In the case where Google authentication is required and a signin_url is specified, Google authentication will be launched before signin_url.",
3240+
"enum": [
3241+
"GOOGLE_AUTHENTICATION_REQUIRED_UNSPECIFIED",
3242+
"NOT_REQUIRED",
3243+
"REQUIRED"
3244+
],
3245+
"enumDescriptions": [
3246+
"This value is not used.",
3247+
"Google authentication is not required.",
3248+
"User is required to be successfully authenticated by Google."
3249+
],
3250+
"readOnly": true,
3251+
"type": "string"
3252+
}
3253+
},
3254+
"type": "object"
3255+
},
32143256
"HardwareInfo": {
32153257
"description": "Information about device hardware. The fields related to temperature thresholds are only available if hardwareStatusEnabled is true in the device's policy.",
32163258
"id": "HardwareInfo",
@@ -5621,12 +5663,14 @@
56215663
"enum": [
56225664
"ALLOW_PERSONAL_USAGE_UNSPECIFIED",
56235665
"PERSONAL_USAGE_ALLOWED",
5624-
"PERSONAL_USAGE_DISALLOWED"
5666+
"PERSONAL_USAGE_DISALLOWED",
5667+
"PERSONAL_USAGE_DISALLOWED_USERLESS"
56255668
],
56265669
"enumDescriptions": [
56275670
"Personal usage restriction is not specified",
56285671
"Personal usage is allowed",
5629-
"Personal usage is disallowed"
5672+
"Personal usage is disallowed",
5673+
"Device is not associated with a single user, and thus both personal usage and corporate identity authentication are not expected."
56305674
],
56315675
"type": "string"
56325676
},

‎androidmanagement/v1/androidmanagement-gen.go

+58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.