Skip to content

Commit 53108d8

Browse files
feat: Automated regeneration of AndroidManagement client (googleapis#12629)
Auto-created at 2024-12-03 13:14:54 +0000 using the toys pull request generator.
1 parent 9457c42 commit 53108d8

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

clients/android_management/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_android_management, "~> 0.56"}]
14+
[{:google_api_android_management, "~> 0.57"}]
1515
end
1616
```
1717

clients/android_management/lib/google_api/android_management/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.AndroidManagement.V1 do
2020
API client metadata for GoogleApi.AndroidManagement.V1.
2121
"""
2222

23-
@discovery_revision "20241104"
23+
@discovery_revision "20241203"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/android_management/lib/google_api/android_management/v1/model/personal_usage_policies.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ defmodule GoogleApi.AndroidManagement.V1.Model.PersonalUsagePolicies do
2626
* `maxDaysWithWorkOff` (*type:* `integer()`, *default:* `nil`) - Controls how long the work profile can stay off. The minimum duration must be at least 3 days. Other details are as follows: - If the duration is set to 0, the feature is turned off. - If the duration is set to a value smaller than the minimum duration, the feature returns an error. *Note:* If you want to avoid personal profiles being suspended during long periods of off-time, you can temporarily set a large value for this parameter.
2727
* `personalApplications` (*type:* `list(GoogleApi.AndroidManagement.V1.Model.PersonalApplicationPolicy.t)`, *default:* `nil`) - Policy applied to applications in the personal profile.
2828
* `personalPlayStoreMode` (*type:* `String.t`, *default:* `nil`) - Used together with personalApplications to control how apps in the personal profile are allowed or blocked.
29+
* `privateSpacePolicy` (*type:* `String.t`, *default:* `nil`) - Optional. Controls whether a private space is allowed on the device.
2930
* `screenCaptureDisabled` (*type:* `boolean()`, *default:* `nil`) - If true, screen capture is disabled for all users.
3031
"""
3132

@@ -38,6 +39,7 @@ defmodule GoogleApi.AndroidManagement.V1.Model.PersonalUsagePolicies do
3839
:personalApplications =>
3940
list(GoogleApi.AndroidManagement.V1.Model.PersonalApplicationPolicy.t()) | nil,
4041
:personalPlayStoreMode => String.t() | nil,
42+
:privateSpacePolicy => String.t() | nil,
4143
:screenCaptureDisabled => boolean() | nil
4244
}
4345

@@ -51,6 +53,7 @@ defmodule GoogleApi.AndroidManagement.V1.Model.PersonalUsagePolicies do
5153
)
5254

5355
field(:personalPlayStoreMode)
56+
field(:privateSpacePolicy)
5457
field(:screenCaptureDisabled)
5558
end
5659

clients/android_management/lib/google_api/android_management/v1/model/policy.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ defmodule GoogleApi.AndroidManagement.V1.Model.Policy do
7878
* `usbMassStorageEnabled` (*type:* `boolean()`, *default:* `nil`) - Whether USB storage is enabled. Deprecated.
7979
* `persistentPreferredActivities` (*type:* `list(GoogleApi.AndroidManagement.V1.Model.PersistentPreferredActivity.t)`, *default:* `nil`) - Default intent handler activities.
8080
* `kioskCustomLauncherEnabled` (*type:* `boolean()`, *default:* `nil`) - Whether the kiosk custom launcher is enabled. This replaces the home screen with a launcher that locks down the device to the apps installed via the applications setting. Apps appear on a single page in alphabetical order. Use kioskCustomization to further configure the kiosk device behavior.
81-
* `keyguardDisabled` (*type:* `boolean()`, *default:* `nil`) - If true, this disables the Lock Screen (https://source.android.com/docs/core/display/multi_display/lock-screen) for primary and/or secondary displays.
81+
* `keyguardDisabled` (*type:* `boolean()`, *default:* `nil`) - If true, this disables the Lock Screen (https://source.android.com/docs/core/display/multi_display/lock-screen) for primary and/or secondary displays. This policy is supported only in dedicated device management mode.
8282
* `ensureVerifyAppsEnabled` (*type:* `boolean()`, *default:* `nil`) - Whether app verification is force-enabled.
8383
* `setupActions` (*type:* `list(GoogleApi.AndroidManagement.V1.Model.SetupAction.t)`, *default:* `nil`) - Action to take during the setup process. At most one action may be specified.
8484
* `version` (*type:* `String.t`, *default:* `nil`) - The version of the policy. This is a read-only field. The version is incremented each time the policy is updated.

clients/android_management/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.AndroidManagement.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.56.2"
21+
@version "0.57.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)