google-apis-androidmanagement_v1 0.104.0 → 0.106.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae5b4e66a4c8c4d1fd9bbac3962c2d7ca98c18bf960aaf99859ae50bbdca0fb4
|
|
4
|
+
data.tar.gz: 4f28fd0043907e58a07f6c0aef78b2acdbd5c0a2da74ae9b6965e58686f66509
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2152433f7f8e5153175b28eba545e0506c41c97df13b5de4351edbf42375c8519130da04f6ae874755b63436cb948dc4308c75ee0b3940e34f842c81bce66fd5
|
|
7
|
+
data.tar.gz: cbac2737aca88a2f1789a775db2e2e3b7b3a7cb10000d677ae87349f92dbbb51980d3a18cc38f3a9d0f8e9eaf2a338195f897cf0bc603488590e50e5944c4202
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.106.0 (2026-01-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260121
|
|
6
|
+
|
|
7
|
+
### v0.105.0 (2026-01-18)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260113
|
|
10
|
+
|
|
3
11
|
### v0.104.0 (2025-11-23)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251120
|
|
@@ -2499,6 +2499,11 @@ module Google
|
|
|
2499
2499
|
# @return [String]
|
|
2500
2500
|
attr_accessor :ultra_wideband_state
|
|
2501
2501
|
|
|
2502
|
+
# Optional. Controls whether the user is allowed to add eSIM profiles.
|
|
2503
|
+
# Corresponds to the JSON property `userInitiatedAddEsimSettings`
|
|
2504
|
+
# @return [String]
|
|
2505
|
+
attr_accessor :user_initiated_add_esim_settings
|
|
2506
|
+
|
|
2502
2507
|
# Controls current state of Wi-Fi and if user can change its state.
|
|
2503
2508
|
# Corresponds to the JSON property `wifiState`
|
|
2504
2509
|
# @return [String]
|
|
@@ -2514,6 +2519,7 @@ module Google
|
|
|
2514
2519
|
@cellular_two_g_state = args[:cellular_two_g_state] if args.key?(:cellular_two_g_state)
|
|
2515
2520
|
@minimum_wifi_security_level = args[:minimum_wifi_security_level] if args.key?(:minimum_wifi_security_level)
|
|
2516
2521
|
@ultra_wideband_state = args[:ultra_wideband_state] if args.key?(:ultra_wideband_state)
|
|
2522
|
+
@user_initiated_add_esim_settings = args[:user_initiated_add_esim_settings] if args.key?(:user_initiated_add_esim_settings)
|
|
2517
2523
|
@wifi_state = args[:wifi_state] if args.key?(:wifi_state)
|
|
2518
2524
|
end
|
|
2519
2525
|
end
|
|
@@ -7077,6 +7083,13 @@ module Google
|
|
|
7077
7083
|
class SystemUpdate
|
|
7078
7084
|
include Google::Apis::Core::Hashable
|
|
7079
7085
|
|
|
7086
|
+
# If this is greater than zero, then this is the number of days after a pending
|
|
7087
|
+
# update becoming available that a device can remain compliant, without taking
|
|
7088
|
+
# the update. Has no effect otherwise.
|
|
7089
|
+
# Corresponds to the JSON property `allowedDaysWithoutUpdate`
|
|
7090
|
+
# @return [Fixnum]
|
|
7091
|
+
attr_accessor :allowed_days_without_update
|
|
7092
|
+
|
|
7080
7093
|
# If the type is WINDOWED, the end of the maintenance window, measured as the
|
|
7081
7094
|
# number of minutes after midnight in device's local time. This value must be
|
|
7082
7095
|
# between 0 and 1439, inclusive. If this value is less than start_minutes, then
|
|
@@ -7113,6 +7126,7 @@ module Google
|
|
|
7113
7126
|
|
|
7114
7127
|
# Update properties of this object
|
|
7115
7128
|
def update!(**args)
|
|
7129
|
+
@allowed_days_without_update = args[:allowed_days_without_update] if args.key?(:allowed_days_without_update)
|
|
7116
7130
|
@end_minutes = args[:end_minutes] if args.key?(:end_minutes)
|
|
7117
7131
|
@freeze_periods = args[:freeze_periods] if args.key?(:freeze_periods)
|
|
7118
7132
|
@start_minutes = args[:start_minutes] if args.key?(:start_minutes)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AndroidmanagementV1
|
|
18
18
|
# Version of the google-apis-androidmanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.106.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260121"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1642,6 +1642,7 @@ module Google
|
|
|
1642
1642
|
property :cellular_two_g_state, as: 'cellularTwoGState'
|
|
1643
1643
|
property :minimum_wifi_security_level, as: 'minimumWifiSecurityLevel'
|
|
1644
1644
|
property :ultra_wideband_state, as: 'ultraWidebandState'
|
|
1645
|
+
property :user_initiated_add_esim_settings, as: 'userInitiatedAddEsimSettings'
|
|
1645
1646
|
property :wifi_state, as: 'wifiState'
|
|
1646
1647
|
end
|
|
1647
1648
|
end
|
|
@@ -2793,6 +2794,7 @@ module Google
|
|
|
2793
2794
|
class SystemUpdate
|
|
2794
2795
|
# @private
|
|
2795
2796
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2797
|
+
property :allowed_days_without_update, as: 'allowedDaysWithoutUpdate'
|
|
2796
2798
|
property :end_minutes, as: 'endMinutes'
|
|
2797
2799
|
collection :freeze_periods, as: 'freezePeriods', class: Google::Apis::AndroidmanagementV1::FreezePeriod, decorator: Google::Apis::AndroidmanagementV1::FreezePeriod::Representation
|
|
2798
2800
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-androidmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.106.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.106.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|