google-apis-androidmanagement_v1 0.51.0 → 0.52.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: 03f9b89c9894d4c31f185b258fc10859af49954b2297f2f8ccdff49b366c346d
|
4
|
+
data.tar.gz: c08803d8cd1e261ad98d0ff4e8cead578a4d415f041b91078d132124834b09ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b72498da993136fcfbaa5a775fa584492729452997a4bf39bfee80ca412437ec0cb27ae3d6b9df6710be20442c699194df8b313ac6788d5ab2c776984fb3ecdd
|
7
|
+
data.tar.gz: 8ef0acb239cc063e49b80fefd2cc5f825a7c1a5ee89bf23605215eb641b20e4e05e0c975cce478bf1223c35a0ec91a26e1348d9c31590d1d1ce65985dd823846
|
data/CHANGELOG.md
CHANGED
@@ -1677,6 +1677,27 @@ module Google
|
|
1677
1677
|
end
|
1678
1678
|
end
|
1679
1679
|
|
1680
|
+
# Covers controls for device connectivity such as Wi-Fi, USB data access,
|
1681
|
+
# keyboard/mouse connections, and more.
|
1682
|
+
class DeviceConnectivityManagement
|
1683
|
+
include Google::Apis::Core::Hashable
|
1684
|
+
|
1685
|
+
# Controls what can be transferred via USB, files and/or data. This is supported
|
1686
|
+
# only on company-owned devices.
|
1687
|
+
# Corresponds to the JSON property `usbDataAccess`
|
1688
|
+
# @return [String]
|
1689
|
+
attr_accessor :usb_data_access
|
1690
|
+
|
1691
|
+
def initialize(**args)
|
1692
|
+
update!(**args)
|
1693
|
+
end
|
1694
|
+
|
1695
|
+
# Update properties of this object
|
1696
|
+
def update!(**args)
|
1697
|
+
@usb_data_access = args[:usb_data_access] if args.key?(:usb_data_access)
|
1698
|
+
end
|
1699
|
+
end
|
1700
|
+
|
1680
1701
|
# Information about security related device settings on device.
|
1681
1702
|
class DeviceSettings
|
1682
1703
|
include Google::Apis::Core::Hashable
|
@@ -3888,6 +3909,12 @@ module Google
|
|
3888
3909
|
# @return [String]
|
3889
3910
|
attr_accessor :default_permission_policy
|
3890
3911
|
|
3912
|
+
# Covers controls for device connectivity such as Wi-Fi, USB data access,
|
3913
|
+
# keyboard/mouse connections, and more.
|
3914
|
+
# Corresponds to the JSON property `deviceConnectivityManagement`
|
3915
|
+
# @return [Google::Apis::AndroidmanagementV1::DeviceConnectivityManagement]
|
3916
|
+
attr_accessor :device_connectivity_management
|
3917
|
+
|
3891
3918
|
# Provides a user-facing message with locale info. The maximum message length is
|
3892
3919
|
# 4096 characters.
|
3893
3920
|
# Corresponds to the JSON property `deviceOwnerLockScreenInfo`
|
@@ -4278,10 +4305,15 @@ module Google
|
|
4278
4305
|
attr_accessor :vpn_config_disabled
|
4279
4306
|
alias_method :vpn_config_disabled?, :vpn_config_disabled
|
4280
4307
|
|
4281
|
-
# Whether configuring Wi-Fi
|
4282
|
-
#
|
4283
|
-
#
|
4284
|
-
#
|
4308
|
+
# Whether configuring Wi-Fi networks is disabled. Supported on fully managed
|
4309
|
+
# devices and work profiles on company-owned devices. For fully managed devices,
|
4310
|
+
# setting this to true removes all configured networks and retains only the
|
4311
|
+
# networks configured using openNetworkConfiguration. For work profiles on
|
4312
|
+
# company-owned devices, existing configured networks are not affected and the
|
4313
|
+
# user is not allowed to add, remove, or modify Wi-Fi networks. Note: If a
|
4314
|
+
# network connection can't be made at boot time and configuring Wi-Fi is
|
4315
|
+
# disabled then network escape hatch will be shown in order to refresh the
|
4316
|
+
# device policy (see networkEscapeHatchEnabled).
|
4285
4317
|
# Corresponds to the JSON property `wifiConfigDisabled`
|
4286
4318
|
# @return [Boolean]
|
4287
4319
|
attr_accessor :wifi_config_disabled
|
@@ -4324,6 +4356,7 @@ module Google
|
|
4324
4356
|
@data_roaming_disabled = args[:data_roaming_disabled] if args.key?(:data_roaming_disabled)
|
4325
4357
|
@debugging_features_allowed = args[:debugging_features_allowed] if args.key?(:debugging_features_allowed)
|
4326
4358
|
@default_permission_policy = args[:default_permission_policy] if args.key?(:default_permission_policy)
|
4359
|
+
@device_connectivity_management = args[:device_connectivity_management] if args.key?(:device_connectivity_management)
|
4327
4360
|
@device_owner_lock_screen_info = args[:device_owner_lock_screen_info] if args.key?(:device_owner_lock_screen_info)
|
4328
4361
|
@encryption_policy = args[:encryption_policy] if args.key?(:encryption_policy)
|
4329
4362
|
@ensure_verify_apps_enabled = args[:ensure_verify_apps_enabled] if args.key?(:ensure_verify_apps_enabled)
|
@@ -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.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230508"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -220,6 +220,12 @@ module Google
|
|
220
220
|
include Google::Apis::Core::JsonObjectSupport
|
221
221
|
end
|
222
222
|
|
223
|
+
class DeviceConnectivityManagement
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
223
229
|
class DeviceSettings
|
224
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
231
|
|
@@ -1114,6 +1120,13 @@ module Google
|
|
1114
1120
|
end
|
1115
1121
|
end
|
1116
1122
|
|
1123
|
+
class DeviceConnectivityManagement
|
1124
|
+
# @private
|
1125
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1126
|
+
property :usb_data_access, as: 'usbDataAccess'
|
1127
|
+
end
|
1128
|
+
end
|
1129
|
+
|
1117
1130
|
class DeviceSettings
|
1118
1131
|
# @private
|
1119
1132
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1685,6 +1698,8 @@ module Google
|
|
1685
1698
|
property :data_roaming_disabled, as: 'dataRoamingDisabled'
|
1686
1699
|
property :debugging_features_allowed, as: 'debuggingFeaturesAllowed'
|
1687
1700
|
property :default_permission_policy, as: 'defaultPermissionPolicy'
|
1701
|
+
property :device_connectivity_management, as: 'deviceConnectivityManagement', class: Google::Apis::AndroidmanagementV1::DeviceConnectivityManagement, decorator: Google::Apis::AndroidmanagementV1::DeviceConnectivityManagement::Representation
|
1702
|
+
|
1688
1703
|
property :device_owner_lock_screen_info, as: 'deviceOwnerLockScreenInfo', class: Google::Apis::AndroidmanagementV1::UserFacingMessage, decorator: Google::Apis::AndroidmanagementV1::UserFacingMessage::Representation
|
1689
1704
|
|
1690
1705
|
property :encryption_policy, as: 'encryptionPolicy'
|
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.52.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: 2023-
|
11
|
+
date: 2023-05-21 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.52.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: []
|