google-apis-androidmanagement_v1 0.101.0 → 0.102.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: 94f4f3f1347438ddceaa9cb53aa53ae4cce2c5f4482b6447f631bb03d4f52066
|
4
|
+
data.tar.gz: acfe86f9a8ab711cd4e46b11e5c062eca16c5361c2adc692aebdb5313a9cf917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f418793ca8b14ea97f65d9acaf2fe1a05d1cee3fa9ed4e4f19a40b50d479dd35f7e58016a95af9024032785a50dda12a302c278bdc43f9d8e70ba69b2f6e9c9
|
7
|
+
data.tar.gz: 88328262c7c4e4d12eba06941f71dd145525b52b524bd7bcb5527007ba1a710df073989ef9328105fdfdea1207b698cfd424829ca1444877e3bf77262c659693
|
data/CHANGELOG.md
CHANGED
@@ -122,7 +122,9 @@ module Google
|
|
122
122
|
|
123
123
|
# Optional. Controls Memory Tagging Extension (MTE) (https://source.android.com/
|
124
124
|
# docs/security/test/memory-safety/arm-mte) on the device. The device needs to
|
125
|
-
# be rebooted to apply changes to the MTE policy.
|
125
|
+
# be rebooted to apply changes to the MTE policy. On Android 15 and above, a
|
126
|
+
# NonComplianceDetail with PENDING is reported if the policy change is pending a
|
127
|
+
# device reboot.
|
126
128
|
# Corresponds to the JSON property `mtePolicy`
|
127
129
|
# @return [String]
|
128
130
|
attr_accessor :mte_policy
|
@@ -1959,6 +1961,157 @@ module Google
|
|
1959
1961
|
end
|
1960
1962
|
end
|
1961
1963
|
|
1964
|
+
# Information about the application to be set as the default.
|
1965
|
+
class DefaultApplication
|
1966
|
+
include Google::Apis::Core::Hashable
|
1967
|
+
|
1968
|
+
# Required. The package name that should be set as the default application. The
|
1969
|
+
# policy is rejected if the package name is invalid.
|
1970
|
+
# Corresponds to the JSON property `packageName`
|
1971
|
+
# @return [String]
|
1972
|
+
attr_accessor :package_name
|
1973
|
+
|
1974
|
+
def initialize(**args)
|
1975
|
+
update!(**args)
|
1976
|
+
end
|
1977
|
+
|
1978
|
+
# Update properties of this object
|
1979
|
+
def update!(**args)
|
1980
|
+
@package_name = args[:package_name] if args.key?(:package_name)
|
1981
|
+
end
|
1982
|
+
end
|
1983
|
+
|
1984
|
+
# Additional context for non-compliance related to default application settings.
|
1985
|
+
class DefaultApplicationContext
|
1986
|
+
include Google::Apis::Core::Hashable
|
1987
|
+
|
1988
|
+
# Output only. The scope of non-compliant default application setting.
|
1989
|
+
# Corresponds to the JSON property `defaultApplicationScope`
|
1990
|
+
# @return [String]
|
1991
|
+
attr_accessor :default_application_scope
|
1992
|
+
|
1993
|
+
def initialize(**args)
|
1994
|
+
update!(**args)
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
# Update properties of this object
|
1998
|
+
def update!(**args)
|
1999
|
+
@default_application_scope = args[:default_application_scope] if args.key?(:default_application_scope)
|
2000
|
+
end
|
2001
|
+
end
|
2002
|
+
|
2003
|
+
# The default application information for a specific DefaultApplicationType.
|
2004
|
+
class DefaultApplicationInfo
|
2005
|
+
include Google::Apis::Core::Hashable
|
2006
|
+
|
2007
|
+
# Output only. Details on the default application setting attempts, in the same
|
2008
|
+
# order as listed in defaultApplications.
|
2009
|
+
# Corresponds to the JSON property `defaultApplicationSettingAttempts`
|
2010
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::DefaultApplicationSettingAttempt>]
|
2011
|
+
attr_accessor :default_application_setting_attempts
|
2012
|
+
|
2013
|
+
# Output only. The default application type.
|
2014
|
+
# Corresponds to the JSON property `defaultApplicationType`
|
2015
|
+
# @return [String]
|
2016
|
+
attr_accessor :default_application_type
|
2017
|
+
|
2018
|
+
# Output only. The package name of the current default application.
|
2019
|
+
# Corresponds to the JSON property `packageName`
|
2020
|
+
# @return [String]
|
2021
|
+
attr_accessor :package_name
|
2022
|
+
|
2023
|
+
def initialize(**args)
|
2024
|
+
update!(**args)
|
2025
|
+
end
|
2026
|
+
|
2027
|
+
# Update properties of this object
|
2028
|
+
def update!(**args)
|
2029
|
+
@default_application_setting_attempts = args[:default_application_setting_attempts] if args.key?(:default_application_setting_attempts)
|
2030
|
+
@default_application_type = args[:default_application_type] if args.key?(:default_application_type)
|
2031
|
+
@package_name = args[:package_name] if args.key?(:package_name)
|
2032
|
+
end
|
2033
|
+
end
|
2034
|
+
|
2035
|
+
# The default application setting for a DefaultApplicationType.
|
2036
|
+
class DefaultApplicationSetting
|
2037
|
+
include Google::Apis::Core::Hashable
|
2038
|
+
|
2039
|
+
# Required. The scopes to which the policy should be applied. This list must not
|
2040
|
+
# be empty or contain duplicates.A NonComplianceDetail with MANAGEMENT_MODE
|
2041
|
+
# reason and DEFAULT_APPLICATION_SETTING_UNSUPPORTED_SCOPES specific reason is
|
2042
|
+
# reported if none of the specified scopes can be applied to the management mode
|
2043
|
+
# (e.g. a fully managed device receives a policy with only
|
2044
|
+
# SCOPE_PERSONAL_PROFILE in the list).
|
2045
|
+
# Corresponds to the JSON property `defaultApplicationScopes`
|
2046
|
+
# @return [Array<String>]
|
2047
|
+
attr_accessor :default_application_scopes
|
2048
|
+
|
2049
|
+
# Required. The app type to set the default application.
|
2050
|
+
# Corresponds to the JSON property `defaultApplicationType`
|
2051
|
+
# @return [String]
|
2052
|
+
attr_accessor :default_application_type
|
2053
|
+
|
2054
|
+
# Required. The list of applications that can be set as the default app for a
|
2055
|
+
# given type. This list must not be empty or contain duplicates. The first app
|
2056
|
+
# in the list that is installed and qualified for the defaultApplicationType (e.
|
2057
|
+
# g. SMS app for DEFAULT_SMS) is set as the default app. The signing key
|
2058
|
+
# certificate fingerprint of the app on the device must also match one of the
|
2059
|
+
# signing key certificate fingerprints obtained from Play Store or one of the
|
2060
|
+
# entries in ApplicationPolicy.signingKeyCerts in order to be set as the default.
|
2061
|
+
# If the defaultApplicationScopes contains SCOPE_FULLY_MANAGED or
|
2062
|
+
# SCOPE_WORK_PROFILE, the app must have an entry in applications with
|
2063
|
+
# installType set to a value other than BLOCKED.A NonComplianceDetail with
|
2064
|
+
# APP_NOT_INSTALLED reason and DEFAULT_APPLICATION_SETTING_FAILED_FOR_SCOPE
|
2065
|
+
# specific reason is reported if none of the apps in the list are installed. A
|
2066
|
+
# NonComplianceDetail with INVALID_VALUE reason and
|
2067
|
+
# DEFAULT_APPLICATION_SETTING_FAILED_FOR_SCOPE specific reason is reported if at
|
2068
|
+
# least one app is installed but the policy fails to apply due to other reasons (
|
2069
|
+
# e.g. the app is not of the right type).When applying to SCOPE_PERSONAL_PROFILE
|
2070
|
+
# on a company-owned device with a work profile, only pre-installed system apps
|
2071
|
+
# can be set as the default. A NonComplianceDetail with INVALID_VALUE reason and
|
2072
|
+
# DEFAULT_APPLICATION_SETTING_FAILED_FOR_SCOPE specific reason is reported if
|
2073
|
+
# the policy fails to apply to the personal profile.
|
2074
|
+
# Corresponds to the JSON property `defaultApplications`
|
2075
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::DefaultApplication>]
|
2076
|
+
attr_accessor :default_applications
|
2077
|
+
|
2078
|
+
def initialize(**args)
|
2079
|
+
update!(**args)
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
# Update properties of this object
|
2083
|
+
def update!(**args)
|
2084
|
+
@default_application_scopes = args[:default_application_scopes] if args.key?(:default_application_scopes)
|
2085
|
+
@default_application_type = args[:default_application_type] if args.key?(:default_application_type)
|
2086
|
+
@default_applications = args[:default_applications] if args.key?(:default_applications)
|
2087
|
+
end
|
2088
|
+
end
|
2089
|
+
|
2090
|
+
# Details on a default application setting attempt.
|
2091
|
+
class DefaultApplicationSettingAttempt
|
2092
|
+
include Google::Apis::Core::Hashable
|
2093
|
+
|
2094
|
+
# Output only. The outcome of setting the app as the default.
|
2095
|
+
# Corresponds to the JSON property `attemptOutcome`
|
2096
|
+
# @return [String]
|
2097
|
+
attr_accessor :attempt_outcome
|
2098
|
+
|
2099
|
+
# Output only. The package name of the attempted application.
|
2100
|
+
# Corresponds to the JSON property `packageName`
|
2101
|
+
# @return [String]
|
2102
|
+
attr_accessor :package_name
|
2103
|
+
|
2104
|
+
def initialize(**args)
|
2105
|
+
update!(**args)
|
2106
|
+
end
|
2107
|
+
|
2108
|
+
# Update properties of this object
|
2109
|
+
def update!(**args)
|
2110
|
+
@attempt_outcome = args[:attempt_outcome] if args.key?(:attempt_outcome)
|
2111
|
+
@package_name = args[:package_name] if args.key?(:package_name)
|
2112
|
+
end
|
2113
|
+
end
|
2114
|
+
|
1962
2115
|
# A device owned by an enterprise. Unless otherwise noted, all fields are read-
|
1963
2116
|
# only and can't be modified by enterprises.devices.patch.
|
1964
2117
|
class Device
|
@@ -2009,6 +2162,19 @@ module Google
|
|
2009
2162
|
# @return [Google::Apis::AndroidmanagementV1::CommonCriteriaModeInfo]
|
2010
2163
|
attr_accessor :common_criteria_mode_info
|
2011
2164
|
|
2165
|
+
# Output only. The default application information for the
|
2166
|
+
# DefaultApplicationType. This information is only available if
|
2167
|
+
# defaultApplicationInfoReportingEnabled is true in the device's policy.
|
2168
|
+
# Available on Android 16 and above.All app types are reported on fully managed
|
2169
|
+
# devices. DEFAULT_BROWSER, DEFAULT_CALL_REDIRECTION, DEFAULT_CALL_SCREENING and
|
2170
|
+
# DEFAULT_DIALER types are reported for the work profiles on company-owned
|
2171
|
+
# devices with a work profile and personally-owned devices. DEFAULT_WALLET is
|
2172
|
+
# also reported for company-owned devices with a work profile, but will only
|
2173
|
+
# include work profile information.
|
2174
|
+
# Corresponds to the JSON property `defaultApplicationInfo`
|
2175
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::DefaultApplicationInfo>]
|
2176
|
+
attr_accessor :default_application_info
|
2177
|
+
|
2012
2178
|
# Information about security related device settings on device.
|
2013
2179
|
# Corresponds to the JSON property `deviceSettings`
|
2014
2180
|
# @return [Google::Apis::AndroidmanagementV1::DeviceSettings]
|
@@ -2198,6 +2364,7 @@ module Google
|
|
2198
2364
|
@applied_policy_version = args[:applied_policy_version] if args.key?(:applied_policy_version)
|
2199
2365
|
@applied_state = args[:applied_state] if args.key?(:applied_state)
|
2200
2366
|
@common_criteria_mode_info = args[:common_criteria_mode_info] if args.key?(:common_criteria_mode_info)
|
2367
|
+
@default_application_info = args[:default_application_info] if args.key?(:default_application_info)
|
2201
2368
|
@device_settings = args[:device_settings] if args.key?(:device_settings)
|
2202
2369
|
@disabled_reason = args[:disabled_reason] if args.key?(:disabled_reason)
|
2203
2370
|
@displays = args[:displays] if args.key?(:displays)
|
@@ -5245,6 +5412,16 @@ module Google
|
|
5245
5412
|
attr_accessor :debugging_features_allowed
|
5246
5413
|
alias_method :debugging_features_allowed?, :debugging_features_allowed
|
5247
5414
|
|
5415
|
+
# Optional. The default application setting for supported types. If the default
|
5416
|
+
# application is successfully set for at least one app type on a profile, users
|
5417
|
+
# are prevented from changing any default applications on that profile.Only one
|
5418
|
+
# DefaultApplicationSetting is allowed for each DefaultApplicationType.See
|
5419
|
+
# Default application settings (https://developers.google.com/android/management/
|
5420
|
+
# default-application-settings) guide for more details.
|
5421
|
+
# Corresponds to the JSON property `defaultApplicationSettings`
|
5422
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::DefaultApplicationSetting>]
|
5423
|
+
attr_accessor :default_application_settings
|
5424
|
+
|
5248
5425
|
# The default permission policy for runtime permission requests.
|
5249
5426
|
# Corresponds to the JSON property `defaultPermissionPolicy`
|
5250
5427
|
# @return [String]
|
@@ -5750,6 +5927,7 @@ module Google
|
|
5750
5927
|
@cross_profile_policies = args[:cross_profile_policies] if args.key?(:cross_profile_policies)
|
5751
5928
|
@data_roaming_disabled = args[:data_roaming_disabled] if args.key?(:data_roaming_disabled)
|
5752
5929
|
@debugging_features_allowed = args[:debugging_features_allowed] if args.key?(:debugging_features_allowed)
|
5930
|
+
@default_application_settings = args[:default_application_settings] if args.key?(:default_application_settings)
|
5753
5931
|
@default_permission_policy = args[:default_permission_policy] if args.key?(:default_permission_policy)
|
5754
5932
|
@device_connectivity_management = args[:device_connectivity_management] if args.key?(:device_connectivity_management)
|
5755
5933
|
@device_owner_lock_screen_info = args[:device_owner_lock_screen_info] if args.key?(:device_owner_lock_screen_info)
|
@@ -6606,6 +6784,11 @@ module Google
|
|
6606
6784
|
class SpecificNonComplianceContext
|
6607
6785
|
include Google::Apis::Core::Hashable
|
6608
6786
|
|
6787
|
+
# Additional context for non-compliance related to default application settings.
|
6788
|
+
# Corresponds to the JSON property `defaultApplicationContext`
|
6789
|
+
# @return [Google::Apis::AndroidmanagementV1::DefaultApplicationContext]
|
6790
|
+
attr_accessor :default_application_context
|
6791
|
+
|
6609
6792
|
# Additional context for non-compliance related to Wi-Fi configuration.
|
6610
6793
|
# Corresponds to the JSON property `oncWifiContext`
|
6611
6794
|
# @return [Google::Apis::AndroidmanagementV1::OncWifiContext]
|
@@ -6622,6 +6805,7 @@ module Google
|
|
6622
6805
|
|
6623
6806
|
# Update properties of this object
|
6624
6807
|
def update!(**args)
|
6808
|
+
@default_application_context = args[:default_application_context] if args.key?(:default_application_context)
|
6625
6809
|
@onc_wifi_context = args[:onc_wifi_context] if args.key?(:onc_wifi_context)
|
6626
6810
|
@password_policies_context = args[:password_policies_context] if args.key?(:password_policies_context)
|
6627
6811
|
end
|
@@ -6756,6 +6940,12 @@ module Google
|
|
6756
6940
|
attr_accessor :common_criteria_mode_enabled
|
6757
6941
|
alias_method :common_criteria_mode_enabled?, :common_criteria_mode_enabled
|
6758
6942
|
|
6943
|
+
# Optional. Whether defaultApplicationInfo reporting is enabled.
|
6944
|
+
# Corresponds to the JSON property `defaultApplicationInfoReportingEnabled`
|
6945
|
+
# @return [Boolean]
|
6946
|
+
attr_accessor :default_application_info_reporting_enabled
|
6947
|
+
alias_method :default_application_info_reporting_enabled?, :default_application_info_reporting_enabled
|
6948
|
+
|
6759
6949
|
# Whether device settings reporting is enabled.
|
6760
6950
|
# Corresponds to the JSON property `deviceSettingsEnabled`
|
6761
6951
|
# @return [Boolean]
|
@@ -6816,6 +7006,7 @@ module Google
|
|
6816
7006
|
@application_reporting_settings = args[:application_reporting_settings] if args.key?(:application_reporting_settings)
|
6817
7007
|
@application_reports_enabled = args[:application_reports_enabled] if args.key?(:application_reports_enabled)
|
6818
7008
|
@common_criteria_mode_enabled = args[:common_criteria_mode_enabled] if args.key?(:common_criteria_mode_enabled)
|
7009
|
+
@default_application_info_reporting_enabled = args[:default_application_info_reporting_enabled] if args.key?(:default_application_info_reporting_enabled)
|
6819
7010
|
@device_settings_enabled = args[:device_settings_enabled] if args.key?(:device_settings_enabled)
|
6820
7011
|
@display_info_enabled = args[:display_info_enabled] if args.key?(:display_info_enabled)
|
6821
7012
|
@hardware_status_enabled = args[:hardware_status_enabled] if args.key?(:hardware_status_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.102.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20251015"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,36 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class DefaultApplication
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class DefaultApplicationContext
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class DefaultApplicationInfo
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class DefaultApplicationSetting
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class DefaultApplicationSettingAttempt
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
259
289
|
class Device
|
260
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
291
|
|
@@ -1483,6 +1513,48 @@ module Google
|
|
1483
1513
|
end
|
1484
1514
|
end
|
1485
1515
|
|
1516
|
+
class DefaultApplication
|
1517
|
+
# @private
|
1518
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1519
|
+
property :package_name, as: 'packageName'
|
1520
|
+
end
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class DefaultApplicationContext
|
1524
|
+
# @private
|
1525
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1526
|
+
property :default_application_scope, as: 'defaultApplicationScope'
|
1527
|
+
end
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class DefaultApplicationInfo
|
1531
|
+
# @private
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1533
|
+
collection :default_application_setting_attempts, as: 'defaultApplicationSettingAttempts', class: Google::Apis::AndroidmanagementV1::DefaultApplicationSettingAttempt, decorator: Google::Apis::AndroidmanagementV1::DefaultApplicationSettingAttempt::Representation
|
1534
|
+
|
1535
|
+
property :default_application_type, as: 'defaultApplicationType'
|
1536
|
+
property :package_name, as: 'packageName'
|
1537
|
+
end
|
1538
|
+
end
|
1539
|
+
|
1540
|
+
class DefaultApplicationSetting
|
1541
|
+
# @private
|
1542
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1543
|
+
collection :default_application_scopes, as: 'defaultApplicationScopes'
|
1544
|
+
property :default_application_type, as: 'defaultApplicationType'
|
1545
|
+
collection :default_applications, as: 'defaultApplications', class: Google::Apis::AndroidmanagementV1::DefaultApplication, decorator: Google::Apis::AndroidmanagementV1::DefaultApplication::Representation
|
1546
|
+
|
1547
|
+
end
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class DefaultApplicationSettingAttempt
|
1551
|
+
# @private
|
1552
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1553
|
+
property :attempt_outcome, as: 'attemptOutcome'
|
1554
|
+
property :package_name, as: 'packageName'
|
1555
|
+
end
|
1556
|
+
end
|
1557
|
+
|
1486
1558
|
class Device
|
1487
1559
|
# @private
|
1488
1560
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1496,6 +1568,8 @@ module Google
|
|
1496
1568
|
property :applied_state, as: 'appliedState'
|
1497
1569
|
property :common_criteria_mode_info, as: 'commonCriteriaModeInfo', class: Google::Apis::AndroidmanagementV1::CommonCriteriaModeInfo, decorator: Google::Apis::AndroidmanagementV1::CommonCriteriaModeInfo::Representation
|
1498
1570
|
|
1571
|
+
collection :default_application_info, as: 'defaultApplicationInfo', class: Google::Apis::AndroidmanagementV1::DefaultApplicationInfo, decorator: Google::Apis::AndroidmanagementV1::DefaultApplicationInfo::Representation
|
1572
|
+
|
1499
1573
|
property :device_settings, as: 'deviceSettings', class: Google::Apis::AndroidmanagementV1::DeviceSettings, decorator: Google::Apis::AndroidmanagementV1::DeviceSettings::Representation
|
1500
1574
|
|
1501
1575
|
property :disabled_reason, as: 'disabledReason', class: Google::Apis::AndroidmanagementV1::UserFacingMessage, decorator: Google::Apis::AndroidmanagementV1::UserFacingMessage::Representation
|
@@ -2333,6 +2407,8 @@ module Google
|
|
2333
2407
|
|
2334
2408
|
property :data_roaming_disabled, as: 'dataRoamingDisabled'
|
2335
2409
|
property :debugging_features_allowed, as: 'debuggingFeaturesAllowed'
|
2410
|
+
collection :default_application_settings, as: 'defaultApplicationSettings', class: Google::Apis::AndroidmanagementV1::DefaultApplicationSetting, decorator: Google::Apis::AndroidmanagementV1::DefaultApplicationSetting::Representation
|
2411
|
+
|
2336
2412
|
property :default_permission_policy, as: 'defaultPermissionPolicy'
|
2337
2413
|
property :device_connectivity_management, as: 'deviceConnectivityManagement', class: Google::Apis::AndroidmanagementV1::DeviceConnectivityManagement, decorator: Google::Apis::AndroidmanagementV1::DeviceConnectivityManagement::Representation
|
2338
2414
|
|
@@ -2635,6 +2711,8 @@ module Google
|
|
2635
2711
|
class SpecificNonComplianceContext
|
2636
2712
|
# @private
|
2637
2713
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2714
|
+
property :default_application_context, as: 'defaultApplicationContext', class: Google::Apis::AndroidmanagementV1::DefaultApplicationContext, decorator: Google::Apis::AndroidmanagementV1::DefaultApplicationContext::Representation
|
2715
|
+
|
2638
2716
|
property :onc_wifi_context, as: 'oncWifiContext', class: Google::Apis::AndroidmanagementV1::OncWifiContext, decorator: Google::Apis::AndroidmanagementV1::OncWifiContext::Representation
|
2639
2717
|
|
2640
2718
|
property :password_policies_context, as: 'passwordPoliciesContext', class: Google::Apis::AndroidmanagementV1::PasswordPoliciesContext, decorator: Google::Apis::AndroidmanagementV1::PasswordPoliciesContext::Representation
|
@@ -2680,6 +2758,7 @@ module Google
|
|
2680
2758
|
|
2681
2759
|
property :application_reports_enabled, as: 'applicationReportsEnabled'
|
2682
2760
|
property :common_criteria_mode_enabled, as: 'commonCriteriaModeEnabled'
|
2761
|
+
property :default_application_info_reporting_enabled, as: 'defaultApplicationInfoReportingEnabled'
|
2683
2762
|
property :device_settings_enabled, as: 'deviceSettingsEnabled'
|
2684
2763
|
property :display_info_enabled, as: 'displayInfoEnabled'
|
2685
2764
|
property :hardware_status_enabled, as: 'hardwareStatusEnabled'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.102.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.102.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|