google-apis-androidmanagement_v1 0.110.0 → 0.111.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: 03ee44f6fffe0652ade87472fb5523f759f43dee6870a56b5b87c57ddbc642fa
|
|
4
|
+
data.tar.gz: 0e894ca5a8eba611c37628ed21fbf745763e0f0a6b7693fe34871ce4a0960686
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a9a4c0dfbf7d92fd451906f8dbdc88fe2dbf05a6be0d0b75ad01227a34d5e2cfda5125a3ab8c2b2a112204a0cc09586e5d1faa8bea5869ea8414a269aae109c
|
|
7
|
+
data.tar.gz: 200c023446e2f17e6349377ba2f792d169ea0f0d7b7e3c68804c4abfa33b4cc1658c361cca4aa0928bdd2cf42d3b6b8cce6e6b08d07c09cd70245f4d4125ddcb
|
data/CHANGELOG.md
CHANGED
|
@@ -2425,6 +2425,11 @@ module Google
|
|
|
2425
2425
|
# @return [Google::Apis::AndroidmanagementV1::PreferentialNetworkServiceSettings]
|
|
2426
2426
|
attr_accessor :preferential_network_service_settings
|
|
2427
2427
|
|
|
2428
|
+
# Controls the device's private DNS settings.
|
|
2429
|
+
# Corresponds to the JSON property `privateDnsSettings`
|
|
2430
|
+
# @return [Google::Apis::AndroidmanagementV1::PrivateDnsSettings]
|
|
2431
|
+
attr_accessor :private_dns_settings
|
|
2432
|
+
|
|
2428
2433
|
# Controls tethering settings. Based on the value set, the user is partially or
|
|
2429
2434
|
# fully disallowed from using different forms of tethering.
|
|
2430
2435
|
# Corresponds to the JSON property `tetheringSettings`
|
|
@@ -2465,6 +2470,7 @@ module Google
|
|
|
2465
2470
|
@bluetooth_sharing = args[:bluetooth_sharing] if args.key?(:bluetooth_sharing)
|
|
2466
2471
|
@configure_wifi = args[:configure_wifi] if args.key?(:configure_wifi)
|
|
2467
2472
|
@preferential_network_service_settings = args[:preferential_network_service_settings] if args.key?(:preferential_network_service_settings)
|
|
2473
|
+
@private_dns_settings = args[:private_dns_settings] if args.key?(:private_dns_settings)
|
|
2468
2474
|
@tethering_settings = args[:tethering_settings] if args.key?(:tethering_settings)
|
|
2469
2475
|
@usb_data_access = args[:usb_data_access] if args.key?(:usb_data_access)
|
|
2470
2476
|
@wifi_direct_settings = args[:wifi_direct_settings] if args.key?(:wifi_direct_settings)
|
|
@@ -5313,10 +5319,7 @@ module Google
|
|
|
5313
5319
|
attr_accessor :auto_time_required
|
|
5314
5320
|
alias_method :auto_time_required?, :auto_time_required
|
|
5315
5321
|
|
|
5316
|
-
#
|
|
5317
|
-
# blocked from being installed. When set, applications that were installed under
|
|
5318
|
-
# a previous policy but no longer appear in the policy are automatically
|
|
5319
|
-
# uninstalled.
|
|
5322
|
+
# This field has no effect.
|
|
5320
5323
|
# Corresponds to the JSON property `blockApplicationsEnabled`
|
|
5321
5324
|
# @return [Boolean]
|
|
5322
5325
|
attr_accessor :block_applications_enabled
|
|
@@ -6190,6 +6193,42 @@ module Google
|
|
|
6190
6193
|
end
|
|
6191
6194
|
end
|
|
6192
6195
|
|
|
6196
|
+
# Controls the device's private DNS settings.
|
|
6197
|
+
class PrivateDnsSettings
|
|
6198
|
+
include Google::Apis::Core::Hashable
|
|
6199
|
+
|
|
6200
|
+
# Optional. The hostname of the DNS server. This must be set if and only if
|
|
6201
|
+
# private_dns_mode is set to PRIVATE_DNS_SPECIFIED_HOST. Supported on Android 10
|
|
6202
|
+
# and above on fully managed devices. A NonComplianceDetail with MANAGEMENT_MODE
|
|
6203
|
+
# is reported on other management modes. A NonComplianceDetail with API_LEVEL is
|
|
6204
|
+
# reported if the Android version is less than 10. A NonComplianceDetail with
|
|
6205
|
+
# PENDING is reported if the device is not connected to a network. A
|
|
6206
|
+
# NonComplianceDetail with nonComplianceReason INVALID_VALUE and
|
|
6207
|
+
# specificNonComplianceReason PRIVATE_DNS_HOST_NOT_SERVING is reported if the
|
|
6208
|
+
# specified host is not a DNS server or not supported on Android. A
|
|
6209
|
+
# NonComplianceDetail with INVALID_VALUE is reported if applying this setting
|
|
6210
|
+
# fails for any other reason.
|
|
6211
|
+
# Corresponds to the JSON property `privateDnsHost`
|
|
6212
|
+
# @return [String]
|
|
6213
|
+
attr_accessor :private_dns_host
|
|
6214
|
+
|
|
6215
|
+
# Optional. The configuration mode for device's global private DNS settings. If
|
|
6216
|
+
# this is set to PRIVATE_DNS_SPECIFIED_HOST, then private_dns_host must be set.
|
|
6217
|
+
# Corresponds to the JSON property `privateDnsMode`
|
|
6218
|
+
# @return [String]
|
|
6219
|
+
attr_accessor :private_dns_mode
|
|
6220
|
+
|
|
6221
|
+
def initialize(**args)
|
|
6222
|
+
update!(**args)
|
|
6223
|
+
end
|
|
6224
|
+
|
|
6225
|
+
# Update properties of this object
|
|
6226
|
+
def update!(**args)
|
|
6227
|
+
@private_dns_host = args[:private_dns_host] if args.key?(:private_dns_host)
|
|
6228
|
+
@private_dns_mode = args[:private_dns_mode] if args.key?(:private_dns_mode)
|
|
6229
|
+
end
|
|
6230
|
+
end
|
|
6231
|
+
|
|
6193
6232
|
# Information about a device that is available during setup.
|
|
6194
6233
|
class ProvisioningInfo
|
|
6195
6234
|
include Google::Apis::Core::Hashable
|
|
@@ -7085,13 +7124,6 @@ module Google
|
|
|
7085
7124
|
class SystemUpdate
|
|
7086
7125
|
include Google::Apis::Core::Hashable
|
|
7087
7126
|
|
|
7088
|
-
# If this is greater than zero, then this is the number of days after a pending
|
|
7089
|
-
# update becoming available that a device can remain compliant, without taking
|
|
7090
|
-
# the update. Has no effect otherwise.
|
|
7091
|
-
# Corresponds to the JSON property `allowedDaysWithoutUpdate`
|
|
7092
|
-
# @return [Fixnum]
|
|
7093
|
-
attr_accessor :allowed_days_without_update
|
|
7094
|
-
|
|
7095
7127
|
# If the type is WINDOWED, the end of the maintenance window, measured as the
|
|
7096
7128
|
# number of minutes after midnight in device's local time. This value must be
|
|
7097
7129
|
# between 0 and 1439, inclusive. If this value is less than start_minutes, then
|
|
@@ -7128,7 +7160,6 @@ module Google
|
|
|
7128
7160
|
|
|
7129
7161
|
# Update properties of this object
|
|
7130
7162
|
def update!(**args)
|
|
7131
|
-
@allowed_days_without_update = args[:allowed_days_without_update] if args.key?(:allowed_days_without_update)
|
|
7132
7163
|
@end_minutes = args[:end_minutes] if args.key?(:end_minutes)
|
|
7133
7164
|
@freeze_periods = args[:freeze_periods] if args.key?(:freeze_periods)
|
|
7134
7165
|
@start_minutes = args[:start_minutes] if args.key?(:start_minutes)
|
|
@@ -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.111.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 = "20260303"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -802,6 +802,12 @@ module Google
|
|
|
802
802
|
include Google::Apis::Core::JsonObjectSupport
|
|
803
803
|
end
|
|
804
804
|
|
|
805
|
+
class PrivateDnsSettings
|
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
807
|
+
|
|
808
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
809
|
+
end
|
|
810
|
+
|
|
805
811
|
class ProvisioningInfo
|
|
806
812
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
807
813
|
|
|
@@ -1625,6 +1631,8 @@ module Google
|
|
|
1625
1631
|
property :configure_wifi, as: 'configureWifi'
|
|
1626
1632
|
property :preferential_network_service_settings, as: 'preferentialNetworkServiceSettings', class: Google::Apis::AndroidmanagementV1::PreferentialNetworkServiceSettings, decorator: Google::Apis::AndroidmanagementV1::PreferentialNetworkServiceSettings::Representation
|
|
1627
1633
|
|
|
1634
|
+
property :private_dns_settings, as: 'privateDnsSettings', class: Google::Apis::AndroidmanagementV1::PrivateDnsSettings, decorator: Google::Apis::AndroidmanagementV1::PrivateDnsSettings::Representation
|
|
1635
|
+
|
|
1628
1636
|
property :tethering_settings, as: 'tetheringSettings'
|
|
1629
1637
|
property :usb_data_access, as: 'usbDataAccess'
|
|
1630
1638
|
property :wifi_direct_settings, as: 'wifiDirectSettings'
|
|
@@ -2553,6 +2561,14 @@ module Google
|
|
|
2553
2561
|
end
|
|
2554
2562
|
end
|
|
2555
2563
|
|
|
2564
|
+
class PrivateDnsSettings
|
|
2565
|
+
# @private
|
|
2566
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2567
|
+
property :private_dns_host, as: 'privateDnsHost'
|
|
2568
|
+
property :private_dns_mode, as: 'privateDnsMode'
|
|
2569
|
+
end
|
|
2570
|
+
end
|
|
2571
|
+
|
|
2556
2572
|
class ProvisioningInfo
|
|
2557
2573
|
# @private
|
|
2558
2574
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2794,7 +2810,6 @@ module Google
|
|
|
2794
2810
|
class SystemUpdate
|
|
2795
2811
|
# @private
|
|
2796
2812
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2797
|
-
property :allowed_days_without_update, as: 'allowedDaysWithoutUpdate'
|
|
2798
2813
|
property :end_minutes, as: 'endMinutes'
|
|
2799
2814
|
collection :freeze_periods, as: 'freezePeriods', class: Google::Apis::AndroidmanagementV1::FreezePeriod, decorator: Google::Apis::AndroidmanagementV1::FreezePeriod::Representation
|
|
2800
2815
|
|
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.111.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.111.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:
|