google-apis-androidmanagement_v1 0.69.0 → 0.70.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: 29bff9749a71b6afc8a41135d535f95b46690247fe8db0072e8656c8259431ef
|
4
|
+
data.tar.gz: ade124c1eefbbbc69e54169a8f654c0e6c94d9de002511e99c6c8db9327b11ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33ece57ed8600635a68a442ed426faac3bcd765a0ecd84f7c70f1bd24804a310db58f8b8ee6f2cfc3b1c4ac6f1700af2561ec942b0389eaadcbc790ddc165104
|
7
|
+
data.tar.gz: 02fb388070ad8fc1acb5168bad684a85676f82cd544641d18736de84fffd6a81e463d9c2e91b71e41c810bc513ebf81b4df6cce97c4de16b964ff5f1dc89f73e
|
data/CHANGELOG.md
CHANGED
@@ -559,6 +559,12 @@ module Google
|
|
559
559
|
# @return [String]
|
560
560
|
attr_accessor :connected_work_and_personal_app
|
561
561
|
|
562
|
+
# Optional. Whether the app is allowed to act as a credential provider on
|
563
|
+
# Android 14 and above.
|
564
|
+
# Corresponds to the JSON property `credentialProviderPolicy`
|
565
|
+
# @return [String]
|
566
|
+
attr_accessor :credential_provider_policy
|
567
|
+
|
562
568
|
# The default policy for all permissions requested by the app. If specified,
|
563
569
|
# this overrides the policy-level default_permission_policy which applies to all
|
564
570
|
# apps. It does not override the permission_grants which applies to all apps.
|
@@ -597,11 +603,11 @@ module Google
|
|
597
603
|
# @return [Array<Google::Apis::AndroidmanagementV1::InstallConstraint>]
|
598
604
|
attr_accessor :install_constraint
|
599
605
|
|
600
|
-
# Optional. Amongst apps with
|
601
|
-
# controls the relative priority of installation. A value of 0 (
|
602
|
-
# this app has no priority over other apps. For values between 1
|
603
|
-
# lower value means a higher priority. Values outside of the range
|
604
|
-
# inclusive are rejected.
|
606
|
+
# Optional. Amongst apps with installType set to: FORCE_INSTALLED
|
607
|
+
# PREINSTALLEDthis controls the relative priority of installation. A value of 0 (
|
608
|
+
# default) means this app has no priority over other apps. For values between 1
|
609
|
+
# and 10,000, a lower value means a higher priority. Values outside of the range
|
610
|
+
# 0 to 10,000 inclusive are rejected.
|
605
611
|
# Corresponds to the JSON property `installPriority`
|
606
612
|
# @return [Fixnum]
|
607
613
|
attr_accessor :install_priority
|
@@ -673,6 +679,7 @@ module Google
|
|
673
679
|
@always_on_vpn_lockdown_exemption = args[:always_on_vpn_lockdown_exemption] if args.key?(:always_on_vpn_lockdown_exemption)
|
674
680
|
@auto_update_mode = args[:auto_update_mode] if args.key?(:auto_update_mode)
|
675
681
|
@connected_work_and_personal_app = args[:connected_work_and_personal_app] if args.key?(:connected_work_and_personal_app)
|
682
|
+
@credential_provider_policy = args[:credential_provider_policy] if args.key?(:credential_provider_policy)
|
676
683
|
@default_permission_policy = args[:default_permission_policy] if args.key?(:default_permission_policy)
|
677
684
|
@delegated_scopes = args[:delegated_scopes] if args.key?(:delegated_scopes)
|
678
685
|
@disabled = args[:disabled] if args.key?(:disabled)
|
@@ -2568,9 +2575,9 @@ module Google
|
|
2568
2575
|
end
|
2569
2576
|
end
|
2570
2577
|
|
2571
|
-
# Amongst apps with
|
2572
|
-
# set of restrictions for the app installation. At least one of the fields
|
2573
|
-
# be set. When multiple fields are set, then all the constraints need to be
|
2578
|
+
# Amongst apps with InstallType set to: FORCE_INSTALLED PREINSTALLEDthis defines
|
2579
|
+
# a set of restrictions for the app installation. At least one of the fields
|
2580
|
+
# must be set. When multiple fields are set, then all the constraints need to be
|
2574
2581
|
# satisfied for the app to be installed.
|
2575
2582
|
class InstallConstraint
|
2576
2583
|
include Google::Apis::Core::Hashable
|
@@ -4288,6 +4295,15 @@ module Google
|
|
4288
4295
|
attr_accessor :create_windows_disabled
|
4289
4296
|
alias_method :create_windows_disabled?, :create_windows_disabled
|
4290
4297
|
|
4298
|
+
# Controls which apps are allowed to act as credential providers on Android 14
|
4299
|
+
# and above. These apps store credentials, see this (https://developer.android.
|
4300
|
+
# com/training/sign-in/passkeys) and this (https://developer.android.com/
|
4301
|
+
# reference/androidx/credentials/CredentialManager) for details. See also
|
4302
|
+
# credentialProviderPolicy.
|
4303
|
+
# Corresponds to the JSON property `credentialProviderPolicyDefault`
|
4304
|
+
# @return [String]
|
4305
|
+
attr_accessor :credential_provider_policy_default
|
4306
|
+
|
4291
4307
|
# Whether configuring user credentials is disabled.
|
4292
4308
|
# Corresponds to the JSON property `credentialsConfigDisabled`
|
4293
4309
|
# @return [Boolean]
|
@@ -4565,6 +4581,12 @@ module Google
|
|
4565
4581
|
# @return [String]
|
4566
4582
|
attr_accessor :preferential_network_service
|
4567
4583
|
|
4584
|
+
# Optional. Controls whether printing is allowed. This is supported on devices
|
4585
|
+
# running Android 9 and above. .
|
4586
|
+
# Corresponds to the JSON property `printingPolicy`
|
4587
|
+
# @return [String]
|
4588
|
+
attr_accessor :printing_policy
|
4589
|
+
|
4568
4590
|
# Allows showing UI on a device for a user to choose a private key alias if
|
4569
4591
|
# there are no matching rules in ChoosePrivateKeyRules. For devices below
|
4570
4592
|
# Android P, setting this may leave enterprise keys vulnerable. This value will
|
@@ -4772,6 +4794,7 @@ module Google
|
|
4772
4794
|
@choose_private_key_rules = args[:choose_private_key_rules] if args.key?(:choose_private_key_rules)
|
4773
4795
|
@compliance_rules = args[:compliance_rules] if args.key?(:compliance_rules)
|
4774
4796
|
@create_windows_disabled = args[:create_windows_disabled] if args.key?(:create_windows_disabled)
|
4797
|
+
@credential_provider_policy_default = args[:credential_provider_policy_default] if args.key?(:credential_provider_policy_default)
|
4775
4798
|
@credentials_config_disabled = args[:credentials_config_disabled] if args.key?(:credentials_config_disabled)
|
4776
4799
|
@cross_profile_policies = args[:cross_profile_policies] if args.key?(:cross_profile_policies)
|
4777
4800
|
@data_roaming_disabled = args[:data_roaming_disabled] if args.key?(:data_roaming_disabled)
|
@@ -4816,6 +4839,7 @@ module Google
|
|
4816
4839
|
@play_store_mode = args[:play_store_mode] if args.key?(:play_store_mode)
|
4817
4840
|
@policy_enforcement_rules = args[:policy_enforcement_rules] if args.key?(:policy_enforcement_rules)
|
4818
4841
|
@preferential_network_service = args[:preferential_network_service] if args.key?(:preferential_network_service)
|
4842
|
+
@printing_policy = args[:printing_policy] if args.key?(:printing_policy)
|
4819
4843
|
@private_key_selection_enabled = args[:private_key_selection_enabled] if args.key?(:private_key_selection_enabled)
|
4820
4844
|
@recommended_global_proxy = args[:recommended_global_proxy] if args.key?(:recommended_global_proxy)
|
4821
4845
|
@remove_user_disabled = args[:remove_user_disabled] if args.key?(:remove_user_disabled)
|
@@ -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.70.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -948,6 +948,7 @@ module Google
|
|
948
948
|
property :always_on_vpn_lockdown_exemption, as: 'alwaysOnVpnLockdownExemption'
|
949
949
|
property :auto_update_mode, as: 'autoUpdateMode'
|
950
950
|
property :connected_work_and_personal_app, as: 'connectedWorkAndPersonalApp'
|
951
|
+
property :credential_provider_policy, as: 'credentialProviderPolicy'
|
951
952
|
property :default_permission_policy, as: 'defaultPermissionPolicy'
|
952
953
|
collection :delegated_scopes, as: 'delegatedScopes'
|
953
954
|
property :disabled, as: 'disabled'
|
@@ -1884,6 +1885,7 @@ module Google
|
|
1884
1885
|
collection :compliance_rules, as: 'complianceRules', class: Google::Apis::AndroidmanagementV1::ComplianceRule, decorator: Google::Apis::AndroidmanagementV1::ComplianceRule::Representation
|
1885
1886
|
|
1886
1887
|
property :create_windows_disabled, as: 'createWindowsDisabled'
|
1888
|
+
property :credential_provider_policy_default, as: 'credentialProviderPolicyDefault'
|
1887
1889
|
property :credentials_config_disabled, as: 'credentialsConfigDisabled'
|
1888
1890
|
property :cross_profile_policies, as: 'crossProfilePolicies', class: Google::Apis::AndroidmanagementV1::CrossProfilePolicies, decorator: Google::Apis::AndroidmanagementV1::CrossProfilePolicies::Representation
|
1889
1891
|
|
@@ -1943,6 +1945,7 @@ module Google
|
|
1943
1945
|
collection :policy_enforcement_rules, as: 'policyEnforcementRules', class: Google::Apis::AndroidmanagementV1::PolicyEnforcementRule, decorator: Google::Apis::AndroidmanagementV1::PolicyEnforcementRule::Representation
|
1944
1946
|
|
1945
1947
|
property :preferential_network_service, as: 'preferentialNetworkService'
|
1948
|
+
property :printing_policy, as: 'printingPolicy'
|
1946
1949
|
property :private_key_selection_enabled, as: 'privateKeySelectionEnabled'
|
1947
1950
|
property :recommended_global_proxy, as: 'recommendedGlobalProxy', class: Google::Apis::AndroidmanagementV1::ProxyInfo, decorator: Google::Apis::AndroidmanagementV1::ProxyInfo::Representation
|
1948
1951
|
|
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.70.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-02-
|
11
|
+
date: 2024-02-18 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.70.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: []
|