google-apis-androidmanagement_v1 0.29.0 → 0.30.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: 7aeda1af7586b09e10eee1011fbcfde0dcfe958ce87eb82f20bf9d4e55c03cb8
|
|
4
|
+
data.tar.gz: de3e7b3af8f701b2d96e64b4ce9c36510ecd07ebf81f2565301acedbeb65b3b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 375e0d5a680bb7acee8526f51a4ddffc45a7168a029774655f06fbadd2cd220a2495a90823ee1234c91ad7029b29b02f6a3c17501ee28d3a7c92263507895273
|
|
7
|
+
data.tar.gz: da4d505ca76747c0caa50993254186cb49dde43226083c2d2057843e064c5b1dd95d1c8be6e8de88657867030de8d4a6c9a9638a2616006603831e561db0f44e
|
data/CHANGELOG.md
CHANGED
|
@@ -418,6 +418,21 @@ module Google
|
|
|
418
418
|
# @return [Array<String>]
|
|
419
419
|
attr_accessor :accessible_track_ids
|
|
420
420
|
|
|
421
|
+
# Specifies whether the app is allowed networking when the VPN is not connected
|
|
422
|
+
# and alwaysOnVpnPackage.lockdownEnabled is enabled. If set to
|
|
423
|
+
# VPN_LOCKDOWN_ENFORCED, the app is not allowed networking, and if set to
|
|
424
|
+
# VPN_LOCKDOWN_EXEMPTION, the app is allowed networking. Only supported on
|
|
425
|
+
# devices running Android 10 and above. If this is not supported by the device,
|
|
426
|
+
# the device will contain a NonComplianceDetail with non_compliance_reason set
|
|
427
|
+
# to API_LEVEL and a fieldPath. If this is not applicable to the app, the device
|
|
428
|
+
# will contain a NonComplianceDetail with non_compliance_reason set to
|
|
429
|
+
# UNSUPPORTED and a fieldPath. The fieldPath is set to applications[i].
|
|
430
|
+
# alwaysOnVpnLockdownExemption, where i is the index of the package in the
|
|
431
|
+
# applications policy.
|
|
432
|
+
# Corresponds to the JSON property `alwaysOnVpnLockdownExemption`
|
|
433
|
+
# @return [String]
|
|
434
|
+
attr_accessor :always_on_vpn_lockdown_exemption
|
|
435
|
+
|
|
421
436
|
# Controls the auto-update mode for the app.
|
|
422
437
|
# Corresponds to the JSON property `autoUpdateMode`
|
|
423
438
|
# @return [String]
|
|
@@ -511,6 +526,7 @@ module Google
|
|
|
511
526
|
# Update properties of this object
|
|
512
527
|
def update!(**args)
|
|
513
528
|
@accessible_track_ids = args[:accessible_track_ids] if args.key?(:accessible_track_ids)
|
|
529
|
+
@always_on_vpn_lockdown_exemption = args[:always_on_vpn_lockdown_exemption] if args.key?(:always_on_vpn_lockdown_exemption)
|
|
514
530
|
@auto_update_mode = args[:auto_update_mode] if args.key?(:auto_update_mode)
|
|
515
531
|
@connected_work_and_personal_app = args[:connected_work_and_personal_app] if args.key?(:connected_work_and_personal_app)
|
|
516
532
|
@default_permission_policy = args[:default_permission_policy] if args.key?(:default_permission_policy)
|
|
@@ -2643,16 +2659,6 @@ module Google
|
|
|
2643
2659
|
# @return [String]
|
|
2644
2660
|
attr_accessor :require_password_unlock
|
|
2645
2661
|
|
|
2646
|
-
# Controls whether a unified lock is allowed for the device and the work profile,
|
|
2647
|
-
# on devices running Android 9 and above with a work profile. This has no
|
|
2648
|
-
# effect on other devices. This can be set only if password_scope is set to
|
|
2649
|
-
# SCOPE_PROFILE, the policy will be rejected otherwise. If user has not set a
|
|
2650
|
-
# separate work lock and this field is set to REQUIRE_SEPARATE_WORK_LOCK, a
|
|
2651
|
-
# NonComplianceDetail is reported with nonComplianceReason set to USER_ACTION.
|
|
2652
|
-
# Corresponds to the JSON property `unifiedLockSettings`
|
|
2653
|
-
# @return [String]
|
|
2654
|
-
attr_accessor :unified_lock_settings
|
|
2655
|
-
|
|
2656
2662
|
def initialize(**args)
|
|
2657
2663
|
update!(**args)
|
|
2658
2664
|
end
|
|
@@ -2672,7 +2678,6 @@ module Google
|
|
|
2672
2678
|
@password_quality = args[:password_quality] if args.key?(:password_quality)
|
|
2673
2679
|
@password_scope = args[:password_scope] if args.key?(:password_scope)
|
|
2674
2680
|
@require_password_unlock = args[:require_password_unlock] if args.key?(:require_password_unlock)
|
|
2675
|
-
@unified_lock_settings = args[:unified_lock_settings] if args.key?(:unified_lock_settings)
|
|
2676
2681
|
end
|
|
2677
2682
|
end
|
|
2678
2683
|
|
|
@@ -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.30.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220314"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -587,6 +587,7 @@ module Google
|
|
|
587
587
|
# @private
|
|
588
588
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
589
589
|
collection :accessible_track_ids, as: 'accessibleTrackIds'
|
|
590
|
+
property :always_on_vpn_lockdown_exemption, as: 'alwaysOnVpnLockdownExemption'
|
|
590
591
|
property :auto_update_mode, as: 'autoUpdateMode'
|
|
591
592
|
property :connected_work_and_personal_app, as: 'connectedWorkAndPersonalApp'
|
|
592
593
|
property :default_permission_policy, as: 'defaultPermissionPolicy'
|
|
@@ -1113,7 +1114,6 @@ module Google
|
|
|
1113
1114
|
property :password_quality, as: 'passwordQuality'
|
|
1114
1115
|
property :password_scope, as: 'passwordScope'
|
|
1115
1116
|
property :require_password_unlock, as: 'requirePasswordUnlock'
|
|
1116
|
-
property :unified_lock_settings, as: 'unifiedLockSettings'
|
|
1117
1117
|
end
|
|
1118
1118
|
end
|
|
1119
1119
|
|
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.30.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: 2022-03-
|
|
11
|
+
date: 2022-03-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.30.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: []
|