google-apis-androidmanagement_v1 0.119.0 → 0.120.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: d1c2eb80918891b7d799244695e161620ac7c4ea8c903094e63186769d946c55
4
- data.tar.gz: 1e4c08aa1a81794fd094a257e4122efcfbc750b215bd470f4162b282c84d694c
3
+ metadata.gz: ec85ada33ea38c99fdd852212708b81a3bbfb9995abfd3959d3300e9d85799e7
4
+ data.tar.gz: 883341f93e4af7238caad96ea2862e09d2bcbb65a5f6bcc914d33a6683a9efe1
5
5
  SHA512:
6
- metadata.gz: 5e4dd1323e6dde492fe39aef61e01b8d4e24f04e60d116a94d4cc62245293a77333b740477b8517264088dab569f6b816b9754163f86de9adda82241c5f287a1
7
- data.tar.gz: 8422a5298cd4f466e0bdd79d0faeea26bc6d35e50e3f224f3bdda25ac39d09eb607ebf95715b960b07f9713d061a0d5817ab2104d6fef42975a0037a01a1c76a
6
+ metadata.gz: 1e07a45b8b7c599cfd4506d0ef15b4fa61acecb84bdb3187fe1a28385c34b409b77f60f35189d3bc2e7eecce271a5d8309d1b5a56b0329d7edf7a3912b172421
7
+ data.tar.gz: 7c608994677297a601ed589a908e8f40589158e99a76fa5449c988827e4a96847bb9919175b6f5125f57084b46e5e42a55b09bf4b3ae67d9446f43a35eff420a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.120.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260729
6
+
3
7
  ### v0.119.0 (2026-07-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20260714
@@ -1825,6 +1825,35 @@ module Google
1825
1825
  end
1826
1826
  end
1827
1827
 
1828
+ # Policies controlling cross-device communication.
1829
+ class CrossDevicePolicies
1830
+ include Google::Apis::Core::Hashable
1831
+
1832
+ # Optional. Manages video streaming of apps on the device for fully managed
1833
+ # devices or in the work profile for devices with work profiles to nearby
1834
+ # devices. This is supported on Android 13 and above.
1835
+ # Corresponds to the JSON property `nearbyAppStreaming`
1836
+ # @return [String]
1837
+ attr_accessor :nearby_app_streaming
1838
+
1839
+ # Optional. Manages streaming of notifications from apps on the device for fully
1840
+ # managed devices or in the work profile for devices with work profiles to
1841
+ # nearby devices. This is supported on Android 13 and above.
1842
+ # Corresponds to the JSON property `nearbyNotificationStreaming`
1843
+ # @return [String]
1844
+ attr_accessor :nearby_notification_streaming
1845
+
1846
+ def initialize(**args)
1847
+ update!(**args)
1848
+ end
1849
+
1850
+ # Update properties of this object
1851
+ def update!(**args)
1852
+ @nearby_app_streaming = args[:nearby_app_streaming] if args.key?(:nearby_app_streaming)
1853
+ @nearby_notification_streaming = args[:nearby_notification_streaming] if args.key?(:nearby_notification_streaming)
1854
+ end
1855
+ end
1856
+
1828
1857
  # Controls the data from the work profile that can be accessed from the personal
1829
1858
  # profile and vice versa. A NonComplianceDetail with MANAGEMENT_MODE is reported
1830
1859
  # if the device does not have a work profile.
@@ -5471,6 +5500,11 @@ module Google
5471
5500
  attr_accessor :credentials_config_disabled
5472
5501
  alias_method :credentials_config_disabled?, :credentials_config_disabled
5473
5502
 
5503
+ # Policies controlling cross-device communication.
5504
+ # Corresponds to the JSON property `crossDevicePolicies`
5505
+ # @return [Google::Apis::AndroidmanagementV1::CrossDevicePolicies]
5506
+ attr_accessor :cross_device_policies
5507
+
5474
5508
  # Controls the data from the work profile that can be accessed from the personal
5475
5509
  # profile and vice versa. A NonComplianceDetail with MANAGEMENT_MODE is reported
5476
5510
  # if the device does not have a work profile.
@@ -6010,6 +6044,7 @@ module Google
6010
6044
  @create_windows_disabled = args[:create_windows_disabled] if args.key?(:create_windows_disabled)
6011
6045
  @credential_provider_policy_default = args[:credential_provider_policy_default] if args.key?(:credential_provider_policy_default)
6012
6046
  @credentials_config_disabled = args[:credentials_config_disabled] if args.key?(:credentials_config_disabled)
6047
+ @cross_device_policies = args[:cross_device_policies] if args.key?(:cross_device_policies)
6013
6048
  @cross_profile_policies = args[:cross_profile_policies] if args.key?(:cross_profile_policies)
6014
6049
  @data_roaming_disabled = args[:data_roaming_disabled] if args.key?(:data_roaming_disabled)
6015
6050
  @debugging_features_allowed = args[:debugging_features_allowed] if args.key?(:debugging_features_allowed)
@@ -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.119.0"
19
+ GEM_VERSION = "0.120.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260714"
25
+ REVISION = "20260729"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class CrossDevicePolicies
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class CrossProfilePolicies
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -1497,6 +1503,14 @@ module Google
1497
1503
  end
1498
1504
  end
1499
1505
 
1506
+ class CrossDevicePolicies
1507
+ # @private
1508
+ class Representation < Google::Apis::Core::JsonRepresentation
1509
+ property :nearby_app_streaming, as: 'nearbyAppStreaming'
1510
+ property :nearby_notification_streaming, as: 'nearbyNotificationStreaming'
1511
+ end
1512
+ end
1513
+
1500
1514
  class CrossProfilePolicies
1501
1515
  # @private
1502
1516
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2437,6 +2451,8 @@ module Google
2437
2451
  property :create_windows_disabled, as: 'createWindowsDisabled'
2438
2452
  property :credential_provider_policy_default, as: 'credentialProviderPolicyDefault'
2439
2453
  property :credentials_config_disabled, as: 'credentialsConfigDisabled'
2454
+ property :cross_device_policies, as: 'crossDevicePolicies', class: Google::Apis::AndroidmanagementV1::CrossDevicePolicies, decorator: Google::Apis::AndroidmanagementV1::CrossDevicePolicies::Representation
2455
+
2440
2456
  property :cross_profile_policies, as: 'crossProfilePolicies', class: Google::Apis::AndroidmanagementV1::CrossProfilePolicies, decorator: Google::Apis::AndroidmanagementV1::CrossProfilePolicies::Representation
2441
2457
 
2442
2458
  property :data_roaming_disabled, as: 'dataRoamingDisabled'
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.119.0
4
+ version: 0.120.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.119.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.120.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: