google-apis-androidmanagement_v1 0.47.0 → 0.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e940c8cceebc9e1b35fd0f575ee5862f4e99643d46a6755005a1f44469e33636
4
- data.tar.gz: 0cf15c47590dc994d8d8abfcb287ce0f3f3344a12d0dbcbdb08c75e79dc5517f
3
+ metadata.gz: d5f7135ea4d423b657b3286c42b067a6cad24816e9f4336d883d2aaafede8ae0
4
+ data.tar.gz: 34ff72422fc29fdc9cd7b387e31d639de41b71e2ebc848887a22b71692df3c72
5
5
  SHA512:
6
- metadata.gz: 0610e69227b45d307e8997a107c44fc064544d43eeb0733b2336b7511be784ed686c1c11e027c644c59ea80445b101d2db99c4c3b893feffa1de3b01f04c8c9c
7
- data.tar.gz: 73c6ac1b4268b973e39fcae8cda579ddeb9dc4b375aa708f81c606b6e7e6fc2a1dcf06a7ab88f710c412ba765a7be5465a4fc1d69e2b776e8f7889e955923153
6
+ metadata.gz: 2acc70aa5dd3a133c9d1acc7ae19472b7a9094bbbffff69700d9ffb0b1d72e6b2b8432963ee67e56f5070ae8005566002e0d3e1e601cb47acaecd24a9fe3fd75
7
+ data.tar.gz: a84388b121acbe85c5b6f3a86c765ebbb04665365c8f14301728a84633d9511b891a58c49bb36c3d74462c7eee66ba6655d7985df261123085d1770a4ae20e8c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.49.0 (2023-02-15)
4
+
5
+ * Regenerated from discovery document revision 20230213
6
+ * Regenerated using generator version 0.12.0
7
+
8
+ ### v0.48.0 (2022-11-25)
9
+
10
+ * Regenerated from discovery document revision 20221118
11
+
3
12
  ### v0.47.0 (2022-11-01)
4
13
 
5
14
  * Regenerated from discovery document revision 20221024
@@ -577,7 +577,14 @@ module Google
577
577
  alias_method :disabled?, :disabled
578
578
 
579
579
  # Configuration to enable an app as an extension app, with the capability of
580
- # interacting with Android Device Policy offline.
580
+ # interacting with Android Device Policy offline. For Android versions 13 and
581
+ # above, extension apps are exempt from battery restrictions so will not be
582
+ # placed into the restricted App Standby Bucket (https://developer.android.com/
583
+ # topic/performance/appstandby#restricted-bucket). Extensions apps are also
584
+ # protected against users clearing their data or force-closing the application,
585
+ # although admins can continue to use the clear app data command (https://
586
+ # developer.android.com/management/reference/rest/v1/enterprises.devices/
587
+ # issueCommand#CommandType) on extension apps if needed for Android 13 and above.
581
588
  # Corresponds to the JSON property `extensionConfig`
582
589
  # @return [Google::Apis::AndroidmanagementV1::ExtensionConfig]
583
590
  attr_accessor :extension_config
@@ -588,7 +595,7 @@ module Google
588
595
  attr_accessor :install_type
589
596
 
590
597
  # Whether the app is allowed to lock itself in full-screen mode. DEPRECATED. Use
591
- # InstallType KIOSK or kioskCustomLauncherEnabled to to configure a dedicated
598
+ # InstallType KIOSK or kioskCustomLauncherEnabled to configure a dedicated
592
599
  # device.
593
600
  # Corresponds to the JSON property `lockTaskAllowed`
594
601
  # @return [Boolean]
@@ -633,6 +640,12 @@ module Google
633
640
  # @return [Array<Google::Apis::AndroidmanagementV1::PermissionGrant>]
634
641
  attr_accessor :permission_grants
635
642
 
643
+ # Specifies whether the app installed in the work profile is allowed to add
644
+ # widgets to the home screen.
645
+ # Corresponds to the JSON property `workProfileWidgets`
646
+ # @return [String]
647
+ attr_accessor :work_profile_widgets
648
+
636
649
  def initialize(**args)
637
650
  update!(**args)
638
651
  end
@@ -654,6 +667,7 @@ module Google
654
667
  @minimum_version_code = args[:minimum_version_code] if args.key?(:minimum_version_code)
655
668
  @package_name = args[:package_name] if args.key?(:package_name)
656
669
  @permission_grants = args[:permission_grants] if args.key?(:permission_grants)
670
+ @work_profile_widgets = args[:work_profile_widgets] if args.key?(:work_profile_widgets)
657
671
  end
658
672
  end
659
673
 
@@ -1320,6 +1334,13 @@ module Google
1320
1334
  # @return [String]
1321
1335
  attr_accessor :show_work_contacts_in_personal_profile
1322
1336
 
1337
+ # Specifies the default behaviour for work profile widgets. If the policy does
1338
+ # not specify work_profile_widgets for a specific application, it will behave
1339
+ # according to the value specified here.
1340
+ # Corresponds to the JSON property `workProfileWidgetsDefault`
1341
+ # @return [String]
1342
+ attr_accessor :work_profile_widgets_default
1343
+
1323
1344
  def initialize(**args)
1324
1345
  update!(**args)
1325
1346
  end
@@ -1329,6 +1350,7 @@ module Google
1329
1350
  @cross_profile_copy_paste = args[:cross_profile_copy_paste] if args.key?(:cross_profile_copy_paste)
1330
1351
  @cross_profile_data_sharing = args[:cross_profile_data_sharing] if args.key?(:cross_profile_data_sharing)
1331
1352
  @show_work_contacts_in_personal_profile = args[:show_work_contacts_in_personal_profile] if args.key?(:show_work_contacts_in_personal_profile)
1353
+ @work_profile_widgets_default = args[:work_profile_widgets_default] if args.key?(:work_profile_widgets_default)
1332
1354
  end
1333
1355
  end
1334
1356
 
@@ -1953,7 +1975,8 @@ module Google
1953
1975
  # @return [Array<String>]
1954
1976
  attr_accessor :enabled_notification_types
1955
1977
 
1956
- # The name of the enterprise displayed to users.
1978
+ # The name of the enterprise displayed to users. This field has a maximum length
1979
+ # of 100 characters.
1957
1980
  # Corresponds to the JSON property `enterpriseDisplayName`
1958
1981
  # @return [String]
1959
1982
  attr_accessor :enterprise_display_name
@@ -2016,7 +2039,14 @@ module Google
2016
2039
  end
2017
2040
 
2018
2041
  # Configuration to enable an app as an extension app, with the capability of
2019
- # interacting with Android Device Policy offline.
2042
+ # interacting with Android Device Policy offline. For Android versions 13 and
2043
+ # above, extension apps are exempt from battery restrictions so will not be
2044
+ # placed into the restricted App Standby Bucket (https://developer.android.com/
2045
+ # topic/performance/appstandby#restricted-bucket). Extensions apps are also
2046
+ # protected against users clearing their data or force-closing the application,
2047
+ # although admins can continue to use the clear app data command (https://
2048
+ # developer.android.com/management/reference/rest/v1/enterprises.devices/
2049
+ # issueCommand#CommandType) on extension apps if needed for Android 13 and above.
2020
2050
  class ExtensionConfig
2021
2051
  include Google::Apis::Core::Hashable
2022
2052
 
@@ -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.47.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221024"
25
+ REVISION = "20230213"
26
26
  end
27
27
  end
28
28
  end
@@ -866,6 +866,7 @@ module Google
866
866
  property :package_name, as: 'packageName'
867
867
  collection :permission_grants, as: 'permissionGrants', class: Google::Apis::AndroidmanagementV1::PermissionGrant, decorator: Google::Apis::AndroidmanagementV1::PermissionGrant::Representation
868
868
 
869
+ property :work_profile_widgets, as: 'workProfileWidgets'
869
870
  end
870
871
  end
871
872
 
@@ -1036,6 +1037,7 @@ module Google
1036
1037
  property :cross_profile_copy_paste, as: 'crossProfileCopyPaste'
1037
1038
  property :cross_profile_data_sharing, as: 'crossProfileDataSharing'
1038
1039
  property :show_work_contacts_in_personal_profile, as: 'showWorkContactsInPersonalProfile'
1040
+ property :work_profile_widgets_default, as: 'workProfileWidgetsDefault'
1039
1041
  end
1040
1042
  end
1041
1043
 
@@ -51,6 +51,7 @@ module Google
51
51
  end
52
52
 
53
53
  # Creates an enterprise. This is the last step in the enterprise signup flow.
54
+ # See also: SigninDetail
54
55
  # @param [Google::Apis::AndroidmanagementV1::Enterprise] enterprise_object
55
56
  # @param [Boolean] agreement_accepted
56
57
  # Whether the enterprise admin has seen and agreed to the managed Google Play
@@ -205,7 +206,7 @@ module Google
205
206
  execute_or_queue_command(command, &block)
206
207
  end
207
208
 
208
- # Updates an enterprise.
209
+ # Updates an enterprise. See also: SigninDetail
209
210
  # @param [String] name
210
211
  # The name of the enterprise in the form enterprises/`enterpriseId`.
211
212
  # @param [Google::Apis::AndroidmanagementV1::Enterprise] enterprise_object
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.47.0
4
+ version: 0.49.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-11-07 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.49.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Android Management API V1