google-apis-androidmanagement_v1 0.51.0 → 0.53.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: 9f9e338bdb2ff2f4d0a279c73746551dfead74a19ac197184d96f335d2938e44
|
4
|
+
data.tar.gz: 6eb4dc866cb18e2665a44e653010a007d7cc1824b88d2030df8d13520ae6a94c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01267263f7c4a587d94d6e718dccafbd9ce96949e5c0de8985b90aa2630a50d2a556388c62222f93c7dbbd9ea13aa8b700e04e9ae478ef124c739eff6c1d7d36
|
7
|
+
data.tar.gz: 3beb43e6e870dba42f6a5b890332bfa095fce9b92a994826bc1216fe1059058c5bae1e36934f3862dc62ef05f898874175683d63565e2d02e52227e264c1f1bd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
2
2
|
|
3
|
+
### v0.53.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230516
|
6
|
+
|
7
|
+
### v0.52.0 (2023-05-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230508
|
10
|
+
|
3
11
|
### v0.51.0 (2023-04-23)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230418
|
@@ -519,7 +519,8 @@ module Google
|
|
519
519
|
end
|
520
520
|
end
|
521
521
|
|
522
|
-
# Policy for an individual app.
|
522
|
+
# Policy for an individual app. Note: Application availability on a given device
|
523
|
+
# cannot be changed using this policy if installAppsDisabled is enabled.
|
523
524
|
class ApplicationPolicy
|
524
525
|
include Google::Apis::Core::Hashable
|
525
526
|
|
@@ -1677,6 +1678,27 @@ module Google
|
|
1677
1678
|
end
|
1678
1679
|
end
|
1679
1680
|
|
1681
|
+
# Covers controls for device connectivity such as Wi-Fi, USB data access,
|
1682
|
+
# keyboard/mouse connections, and more.
|
1683
|
+
class DeviceConnectivityManagement
|
1684
|
+
include Google::Apis::Core::Hashable
|
1685
|
+
|
1686
|
+
# Controls what files and/or data can be transferred via USB. Supported only on
|
1687
|
+
# company-owned devices.
|
1688
|
+
# Corresponds to the JSON property `usbDataAccess`
|
1689
|
+
# @return [String]
|
1690
|
+
attr_accessor :usb_data_access
|
1691
|
+
|
1692
|
+
def initialize(**args)
|
1693
|
+
update!(**args)
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
# Update properties of this object
|
1697
|
+
def update!(**args)
|
1698
|
+
@usb_data_access = args[:usb_data_access] if args.key?(:usb_data_access)
|
1699
|
+
end
|
1700
|
+
end
|
1701
|
+
|
1680
1702
|
# Information about security related device settings on device.
|
1681
1703
|
class DeviceSettings
|
1682
1704
|
include Google::Apis::Core::Hashable
|
@@ -3888,6 +3910,12 @@ module Google
|
|
3888
3910
|
# @return [String]
|
3889
3911
|
attr_accessor :default_permission_policy
|
3890
3912
|
|
3913
|
+
# Covers controls for device connectivity such as Wi-Fi, USB data access,
|
3914
|
+
# keyboard/mouse connections, and more.
|
3915
|
+
# Corresponds to the JSON property `deviceConnectivityManagement`
|
3916
|
+
# @return [Google::Apis::AndroidmanagementV1::DeviceConnectivityManagement]
|
3917
|
+
attr_accessor :device_connectivity_management
|
3918
|
+
|
3891
3919
|
# Provides a user-facing message with locale info. The maximum message length is
|
3892
3920
|
# 4096 characters.
|
3893
3921
|
# Corresponds to the JSON property `deviceOwnerLockScreenInfo`
|
@@ -4278,10 +4306,15 @@ module Google
|
|
4278
4306
|
attr_accessor :vpn_config_disabled
|
4279
4307
|
alias_method :vpn_config_disabled?, :vpn_config_disabled
|
4280
4308
|
|
4281
|
-
# Whether configuring Wi-Fi
|
4282
|
-
#
|
4283
|
-
#
|
4284
|
-
#
|
4309
|
+
# Whether configuring Wi-Fi networks is disabled. Supported on fully managed
|
4310
|
+
# devices and work profiles on company-owned devices. For fully managed devices,
|
4311
|
+
# setting this to true removes all configured networks and retains only the
|
4312
|
+
# networks configured using openNetworkConfiguration. For work profiles on
|
4313
|
+
# company-owned devices, existing configured networks are not affected and the
|
4314
|
+
# user is not allowed to add, remove, or modify Wi-Fi networks. Note: If a
|
4315
|
+
# network connection can't be made at boot time and configuring Wi-Fi is
|
4316
|
+
# disabled then network escape hatch will be shown in order to refresh the
|
4317
|
+
# device policy (see networkEscapeHatchEnabled).
|
4285
4318
|
# Corresponds to the JSON property `wifiConfigDisabled`
|
4286
4319
|
# @return [Boolean]
|
4287
4320
|
attr_accessor :wifi_config_disabled
|
@@ -4324,6 +4357,7 @@ module Google
|
|
4324
4357
|
@data_roaming_disabled = args[:data_roaming_disabled] if args.key?(:data_roaming_disabled)
|
4325
4358
|
@debugging_features_allowed = args[:debugging_features_allowed] if args.key?(:debugging_features_allowed)
|
4326
4359
|
@default_permission_policy = args[:default_permission_policy] if args.key?(:default_permission_policy)
|
4360
|
+
@device_connectivity_management = args[:device_connectivity_management] if args.key?(:device_connectivity_management)
|
4327
4361
|
@device_owner_lock_screen_info = args[:device_owner_lock_screen_info] if args.key?(:device_owner_lock_screen_info)
|
4328
4362
|
@encryption_policy = args[:encryption_policy] if args.key?(:encryption_policy)
|
4329
4363
|
@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.53.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 = "20230516"
|
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.53.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-28 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.53.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: []
|