google-apis-androidmanagement_v1 0.65.0 → 0.67.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: a9b5e4fabd51725e7c996d1dc868aeb50c4605dae2db79afe1e86002d00e875c
4
- data.tar.gz: 1180573452edd3186995ca92976b229490d07aae9dfc09073ac82dbee349cd9d
3
+ metadata.gz: 902beb864415a5a09bc850df180821da8ab81518a94504b7169e94005e98d1d0
4
+ data.tar.gz: 269f677f79913a140fea9fa021cb4fa47fb7436ee3edf133c2dce7e79edd0f79
5
5
  SHA512:
6
- metadata.gz: 91fa0920a0387079454bcf82e4823f261960d2d21a4164c218712ccc5c49a02d24c14dcf561b0991ac1fbe82a549b96eb2b87bebbbc22a46daa4b37682313d4a
7
- data.tar.gz: 03a9e6e96e1423a8ad0bb86f90a23e5755d20bdf4ee6ee2f105baef5e0d4ee958c37d13b257360ca1a927b9681895730e09128a3a526e0195e1c5d6cd73918d5
6
+ metadata.gz: 5079ddae62769a989d47561bed65ede4e8424e19a181d47abcb753e7c0ec383fbfac1e9b954f505cad312548f2f93b3b34f8b9d6773b7cbc8d3f9edc4f76d829
7
+ data.tar.gz: a0eb7fdf0ed88dc3826feecb20ae664d02fa20469cf0dd66add7e2e480f833e9b95f99a69026f5d805185bfe7fc91e5889c26cf45dae784ee1458905bb3458c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.67.0 (2024-01-22)
4
+
5
+ * Regenerated from discovery document revision 20240108
6
+ * Regenerated using generator version 0.13.0
7
+
8
+ ### v0.66.0 (2023-12-03)
9
+
10
+ * Regenerated from discovery document revision 20231120
11
+
3
12
  ### v0.65.0 (2023-11-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20231025
@@ -521,8 +521,7 @@ module Google
521
521
 
522
522
  # Policy for an individual app. Note: Application availability on a given device
523
523
  # cannot be changed using this policy if installAppsDisabled is enabled. The
524
- # maximum number of applications that you can specify per enterprise policy is 3,
525
- # 000.
524
+ # maximum number of applications that you can specify per policy is 3,000.
526
525
  class ApplicationPolicy
527
526
  include Google::Apis::Core::Hashable
528
527
 
@@ -1780,6 +1779,12 @@ module Google
1780
1779
  # @return [String]
1781
1780
  attr_accessor :cellular_two_g_state
1782
1781
 
1782
+ # The minimum required security level of Wi-Fi networks that the device can
1783
+ # connect to.
1784
+ # Corresponds to the JSON property `minimumWifiSecurityLevel`
1785
+ # @return [String]
1786
+ attr_accessor :minimum_wifi_security_level
1787
+
1783
1788
  # Controls the state of the ultra wideband setting and whether the user can
1784
1789
  # toggle it on or off.
1785
1790
  # Corresponds to the JSON property `ultraWidebandState`
@@ -1799,6 +1804,7 @@ module Google
1799
1804
  def update!(**args)
1800
1805
  @airplane_mode_state = args[:airplane_mode_state] if args.key?(:airplane_mode_state)
1801
1806
  @cellular_two_g_state = args[:cellular_two_g_state] if args.key?(:cellular_two_g_state)
1807
+ @minimum_wifi_security_level = args[:minimum_wifi_security_level] if args.key?(:minimum_wifi_security_level)
1802
1808
  @ultra_wideband_state = args[:ultra_wideband_state] if args.key?(:ultra_wideband_state)
1803
1809
  @wifi_state = args[:wifi_state] if args.key?(:wifi_state)
1804
1810
  end
@@ -3982,7 +3988,7 @@ module Google
3982
3988
  # @return [String]
3983
3989
  attr_accessor :app_auto_update_policy
3984
3990
 
3985
- # Policy applied to apps.
3991
+ # Policy applied to apps. This can have at most 3,000 elements.
3986
3992
  # Corresponds to the JSON property `applications`
3987
3993
  # @return [Array<Google::Apis::AndroidmanagementV1::ApplicationPolicy>]
3988
3994
  attr_accessor :applications
@@ -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.65.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231025"
25
+ REVISION = "20240108"
26
26
  end
27
27
  end
28
28
  end
@@ -1212,6 +1212,7 @@ module Google
1212
1212
  class Representation < Google::Apis::Core::JsonRepresentation
1213
1213
  property :airplane_mode_state, as: 'airplaneModeState'
1214
1214
  property :cellular_two_g_state, as: 'cellularTwoGState'
1215
+ property :minimum_wifi_security_level, as: 'minimumWifiSecurityLevel'
1215
1216
  property :ultra_wideband_state, as: 'ultraWidebandState'
1216
1217
  property :wifi_state, as: 'wifiState'
1217
1218
  end
@@ -33,6 +33,8 @@ module Google
33
33
  #
34
34
  # @see https://developers.google.com/android/management
35
35
  class AndroidManagementService < Google::Apis::Core::BaseService
36
+ DEFAULT_ENDPOINT_TEMPLATE = "https://androidmanagement.$UNIVERSE_DOMAIN$/"
37
+
36
38
  # @return [String]
37
39
  # API key. Your API key identifies your project and provides you with API access,
38
40
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -44,7 +46,7 @@ module Google
44
46
  attr_accessor :quota_user
45
47
 
46
48
  def initialize
47
- super('https://androidmanagement.googleapis.com/', '',
49
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
48
50
  client_name: 'google-apis-androidmanagement_v1',
49
51
  client_version: Google::Apis::AndroidmanagementV1::GEM_VERSION)
50
52
  @batch_path = 'batch'
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.65.0
4
+ version: 0.67.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: 2023-11-05 00:00:00.000000000 Z
11
+ date: 2024-01-23 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.11.0
19
+ version: 0.12.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.11.0
29
+ version: 0.12.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.65.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.67.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.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Android Management API V1