google-apis-androidmanagement_v1 0.51.0 → 0.52.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af16dc12ecb28360f40dcc96dc9a3be78cac80d593879ece0464485dfb7f24d8
4
- data.tar.gz: 1a407750be06e8028e4644fd422bf8442ec2337a93695db15199c5bd501a585a
3
+ metadata.gz: 03f9b89c9894d4c31f185b258fc10859af49954b2297f2f8ccdff49b366c346d
4
+ data.tar.gz: c08803d8cd1e261ad98d0ff4e8cead578a4d415f041b91078d132124834b09ae
5
5
  SHA512:
6
- metadata.gz: c84008f92882c8818d44a02282888337ffcf911a0981bb145b963e1fbd31ec2010e054b58ea89efd0b5b51cc2713a1b3aaa1a9cb5e63d460535a1c115722047f
7
- data.tar.gz: '019e2aa2f06321604d1960011c17f9f2912f0eb6fb1b0ec6f8ef42180785c596217092e9b136564382d50674039c564ac290d08c501d2b4c6c7b844edd8d570d'
6
+ metadata.gz: b72498da993136fcfbaa5a775fa584492729452997a4bf39bfee80ca412437ec0cb27ae3d6b9df6710be20442c699194df8b313ac6788d5ab2c776984fb3ecdd
7
+ data.tar.gz: 8ef0acb239cc063e49b80fefd2cc5f825a7c1a5ee89bf23605215eb641b20e4e05e0c975cce478bf1223c35a0ec91a26e1348d9c31590d1d1ce65985dd823846
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.52.0 (2023-05-21)
4
+
5
+ * Regenerated from discovery document revision 20230508
6
+
3
7
  ### v0.51.0 (2023-04-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230418
@@ -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 access points is disabled. Note: If a network
4282
- # connection can't be made at boot time and configuring Wi-Fi is disabled then
4283
- # network escape hatch will be shown in order to refresh the device policy (see
4284
- # networkEscapeHatchEnabled).
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.51.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 = "20230418"
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.51.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-04-23 00:00:00.000000000 Z
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.51.0
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: []