google-apis-androidmanagement_v1 0.73.0 → 0.74.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: 05f921442f8ceb705bfe1763de118bb11de418d2add522850d412008cfcf43fe
|
4
|
+
data.tar.gz: e44eaf79ca45448cc3d6642419dcf7d649408b945e6daace1ca00bf8961ecd60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b00a3fa3c149909d26960ef7e941a16bc42b854d083245073cb577039ddd5edbcb75d40082b66afd36aa0a4ddb289b9b125cff240d13419edd261f5a6b7b3061
|
7
|
+
data.tar.gz: 044c0dfaf705de8eb148d0631e72399c8d95db20db67c7d97c585033ddcda26bd4560dc1131573a4456d622dd7055062cd8983ae3ba86d54f093304af5a6fca4
|
data/CHANGELOG.md
CHANGED
@@ -1790,6 +1790,13 @@ module Google
|
|
1790
1790
|
# @return [String]
|
1791
1791
|
attr_accessor :wifi_direct_settings
|
1792
1792
|
|
1793
|
+
# Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this
|
1794
|
+
# does not affect which networks can be configured on the device. Supported on
|
1795
|
+
# company-owned devices running Android 13 and above.
|
1796
|
+
# Corresponds to the JSON property `wifiSsidPolicy`
|
1797
|
+
# @return [Google::Apis::AndroidmanagementV1::WifiSsidPolicy]
|
1798
|
+
attr_accessor :wifi_ssid_policy
|
1799
|
+
|
1793
1800
|
def initialize(**args)
|
1794
1801
|
update!(**args)
|
1795
1802
|
end
|
@@ -1800,6 +1807,7 @@ module Google
|
|
1800
1807
|
@tethering_settings = args[:tethering_settings] if args.key?(:tethering_settings)
|
1801
1808
|
@usb_data_access = args[:usb_data_access] if args.key?(:usb_data_access)
|
1802
1809
|
@wifi_direct_settings = args[:wifi_direct_settings] if args.key?(:wifi_direct_settings)
|
1810
|
+
@wifi_ssid_policy = args[:wifi_ssid_policy] if args.key?(:wifi_ssid_policy)
|
1803
1811
|
end
|
1804
1812
|
end
|
1805
1813
|
|
@@ -4692,7 +4700,11 @@ module Google
|
|
4692
4700
|
# @return [Array<String>]
|
4693
4701
|
attr_accessor :stay_on_plugged_modes
|
4694
4702
|
|
4695
|
-
# Configuration for managing system updates
|
4703
|
+
# Configuration for managing system updatesNote: Google Play system updates (
|
4704
|
+
# https://source.android.com/docs/core/ota/modular-system) (also called Mainline
|
4705
|
+
# updates) are automatically downloaded but require a device reboot to be
|
4706
|
+
# installed. Refer to the mainline section in Manage system updates (https://
|
4707
|
+
# developer.android.com/work/dpc/system-updates#mainline) for further details.
|
4696
4708
|
# Corresponds to the JSON property `systemUpdate`
|
4697
4709
|
# @return [Google::Apis::AndroidmanagementV1::SystemUpdate]
|
4698
4710
|
attr_accessor :system_update
|
@@ -5635,7 +5647,11 @@ module Google
|
|
5635
5647
|
end
|
5636
5648
|
end
|
5637
5649
|
|
5638
|
-
# Configuration for managing system updates
|
5650
|
+
# Configuration for managing system updatesNote: Google Play system updates (
|
5651
|
+
# https://source.android.com/docs/core/ota/modular-system) (also called Mainline
|
5652
|
+
# updates) are automatically downloaded but require a device reboot to be
|
5653
|
+
# installed. Refer to the mainline section in Manage system updates (https://
|
5654
|
+
# developer.android.com/work/dpc/system-updates#mainline) for further details.
|
5639
5655
|
class SystemUpdate
|
5640
5656
|
include Google::Apis::Core::Hashable
|
5641
5657
|
|
@@ -6222,6 +6238,57 @@ module Google
|
|
6222
6238
|
end
|
6223
6239
|
end
|
6224
6240
|
|
6241
|
+
# Represents a Wi-Fi SSID.
|
6242
|
+
class WifiSsid
|
6243
|
+
include Google::Apis::Core::Hashable
|
6244
|
+
|
6245
|
+
# Required. Wi-Fi SSID represented as a string.
|
6246
|
+
# Corresponds to the JSON property `wifiSsid`
|
6247
|
+
# @return [String]
|
6248
|
+
attr_accessor :wifi_ssid
|
6249
|
+
|
6250
|
+
def initialize(**args)
|
6251
|
+
update!(**args)
|
6252
|
+
end
|
6253
|
+
|
6254
|
+
# Update properties of this object
|
6255
|
+
def update!(**args)
|
6256
|
+
@wifi_ssid = args[:wifi_ssid] if args.key?(:wifi_ssid)
|
6257
|
+
end
|
6258
|
+
end
|
6259
|
+
|
6260
|
+
# Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this
|
6261
|
+
# does not affect which networks can be configured on the device. Supported on
|
6262
|
+
# company-owned devices running Android 13 and above.
|
6263
|
+
class WifiSsidPolicy
|
6264
|
+
include Google::Apis::Core::Hashable
|
6265
|
+
|
6266
|
+
# Type of the Wi-Fi SSID policy to be applied.
|
6267
|
+
# Corresponds to the JSON property `wifiSsidPolicyType`
|
6268
|
+
# @return [String]
|
6269
|
+
attr_accessor :wifi_ssid_policy_type
|
6270
|
+
|
6271
|
+
# Optional. List of Wi-Fi SSIDs that should be applied in the policy. This field
|
6272
|
+
# must be non-empty when WifiSsidPolicyType is set to WIFI_SSID_ALLOWLIST. If
|
6273
|
+
# this is set to a non-empty list, then a nonComplianceDetail detail with
|
6274
|
+
# API_LEVEL is reported if the Android version is less than 13 and a
|
6275
|
+
# nonComplianceDetail with MANAGEMENT_MODE is reported for non-company-owned
|
6276
|
+
# devices.
|
6277
|
+
# Corresponds to the JSON property `wifiSsids`
|
6278
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::WifiSsid>]
|
6279
|
+
attr_accessor :wifi_ssids
|
6280
|
+
|
6281
|
+
def initialize(**args)
|
6282
|
+
update!(**args)
|
6283
|
+
end
|
6284
|
+
|
6285
|
+
# Update properties of this object
|
6286
|
+
def update!(**args)
|
6287
|
+
@wifi_ssid_policy_type = args[:wifi_ssid_policy_type] if args.key?(:wifi_ssid_policy_type)
|
6288
|
+
@wifi_ssids = args[:wifi_ssids] if args.key?(:wifi_ssids)
|
6289
|
+
end
|
6290
|
+
end
|
6291
|
+
|
6225
6292
|
# An action to reset a company owned device or delete a work profile. Note:
|
6226
6293
|
# blockAction must also be specified.
|
6227
6294
|
class WipeAction
|
@@ -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.74.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240425"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -802,6 +802,18 @@ module Google
|
|
802
802
|
include Google::Apis::Core::JsonObjectSupport
|
803
803
|
end
|
804
804
|
|
805
|
+
class WifiSsid
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
|
+
|
808
|
+
include Google::Apis::Core::JsonObjectSupport
|
809
|
+
end
|
810
|
+
|
811
|
+
class WifiSsidPolicy
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
|
+
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
815
|
+
end
|
816
|
+
|
805
817
|
class WipeAction
|
806
818
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
819
|
|
@@ -1235,6 +1247,8 @@ module Google
|
|
1235
1247
|
property :tethering_settings, as: 'tetheringSettings'
|
1236
1248
|
property :usb_data_access, as: 'usbDataAccess'
|
1237
1249
|
property :wifi_direct_settings, as: 'wifiDirectSettings'
|
1250
|
+
property :wifi_ssid_policy, as: 'wifiSsidPolicy', class: Google::Apis::AndroidmanagementV1::WifiSsidPolicy, decorator: Google::Apis::AndroidmanagementV1::WifiSsidPolicy::Representation
|
1251
|
+
|
1238
1252
|
end
|
1239
1253
|
end
|
1240
1254
|
|
@@ -2345,6 +2359,22 @@ module Google
|
|
2345
2359
|
end
|
2346
2360
|
end
|
2347
2361
|
|
2362
|
+
class WifiSsid
|
2363
|
+
# @private
|
2364
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2365
|
+
property :wifi_ssid, as: 'wifiSsid'
|
2366
|
+
end
|
2367
|
+
end
|
2368
|
+
|
2369
|
+
class WifiSsidPolicy
|
2370
|
+
# @private
|
2371
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2372
|
+
property :wifi_ssid_policy_type, as: 'wifiSsidPolicyType'
|
2373
|
+
collection :wifi_ssids, as: 'wifiSsids', class: Google::Apis::AndroidmanagementV1::WifiSsid, decorator: Google::Apis::AndroidmanagementV1::WifiSsid::Representation
|
2374
|
+
|
2375
|
+
end
|
2376
|
+
end
|
2377
|
+
|
2348
2378
|
class WipeAction
|
2349
2379
|
# @private
|
2350
2380
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.74.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.74.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|