google-apis-androidmanagement_v1 0.78.0 → 0.79.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: 87b33047cfcaaaf77af06d87d67875eb19e5b0c3a71b7e4a62b4f6c87ed11fc8
4
- data.tar.gz: 395fc7ac3d5e062c670a07cada3aa1579bb02a3a8f498aff13525829d9d6885b
3
+ metadata.gz: 1ad0b62159855664a3676bf21eca0e6e43089463e05b3ba21409ec07a827bb13
4
+ data.tar.gz: 85fb1d28727062c85f32ed37ecacef734caa38d02179522ff4e8cd939993d15c
5
5
  SHA512:
6
- metadata.gz: ff7657bd9e07913ca4d577ef0aff28c31953a2cacac259df71815a0554dd7878b143895568c4f31fd7512624e791932d3509509259b3508867a1015192e8a1a9
7
- data.tar.gz: fcd41043e0ed8806a2612a88645b76bddd805c264b1f8d3f64fcf5e4bc8f25e5dbd72abc30d839f3a4d27a78e03d4c6b18775e818ce06f56184292c9b783a17e
6
+ metadata.gz: 5bc83591faf4da559bbb9d2827d55543dfe3ce32df25b416e6576d44575b0deb9ce33eabb662ed3b3c6d4058b8ed6fa199c049915313da131a0d823c54f2391c
7
+ data.tar.gz: d770e6c23c4d587060fe1394dd36a944f2f0ee20474a5ff39b2ce2d28000f09130b92dcf7b143eef28dfc2ea60cb50fe31c868b800291f46c463b12473c93033
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-androidmanagement_v1
2
2
 
3
+ ### v0.79.0 (2024-08-11)
4
+
5
+ * Regenerated from discovery document revision 20240808
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.78.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240724
@@ -63,9 +63,10 @@ module Google
63
63
  # Criteria for Information Technology Security Evaluation (https://www.
64
64
  # commoncriteriaportal.org/) (CC). Enabling Common Criteria Mode increases
65
65
  # certain security components on a device, including AES-GCM encryption of
66
- # Bluetooth Long Term Keys, and Wi-Fi configuration stores.Warning: Common
67
- # Criteria Mode enforces a strict security model typically only required for IT
68
- # products used in national security systems and other highly sensitive
66
+ # Bluetooth Long Term Keys, and Wi-Fi configuration stores.Common Criteria Mode
67
+ # is only supported on company-owned devices running Android 11 or above.Warning:
68
+ # Common Criteria Mode enforces a strict security model typically only required
69
+ # for IT products used in national security systems and other highly sensitive
69
70
  # organizations. Standard device use may be affected. Only enabled if required.
70
71
  # Corresponds to the JSON property `commonCriteriaMode`
71
72
  # @return [String]
@@ -5362,6 +5363,19 @@ module Google
5362
5363
  # @return [String]
5363
5364
  attr_accessor :allow_personal_usage
5364
5365
 
5366
+ # Optional. Whether the sign-in URL should be used by default for the enterprise.
5367
+ # The SigninDetail with defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT is used
5368
+ # for Google account enrollment method. Only one of an enterprise's
5369
+ # signinDetails can have defaultStatus set to SIGNIN_DETAIL_IS_DEFAULT. If an
5370
+ # Enterprise has at least one signinDetails and none of them have defaultStatus
5371
+ # set to SIGNIN_DETAIL_IS_DEFAULT then the first one from the list is selected
5372
+ # and has set defaultStatus to SIGNIN_DETAIL_IS_DEFAULT. If no signinDetails
5373
+ # specified for the Enterprise then the Google Account device enrollment will
5374
+ # fail.
5375
+ # Corresponds to the JSON property `defaultStatus`
5376
+ # @return [String]
5377
+ attr_accessor :default_status
5378
+
5365
5379
  # A JSON string whose UTF-8 representation can be used to generate a QR code to
5366
5380
  # enroll a device with this enrollment token. To enroll a device using NFC, the
5367
5381
  # NFC record must contain a serialized java.util.Properties representation of
@@ -5397,6 +5411,7 @@ module Google
5397
5411
  # Update properties of this object
5398
5412
  def update!(**args)
5399
5413
  @allow_personal_usage = args[:allow_personal_usage] if args.key?(:allow_personal_usage)
5414
+ @default_status = args[:default_status] if args.key?(:default_status)
5400
5415
  @qr_code = args[:qr_code] if args.key?(:qr_code)
5401
5416
  @signin_enrollment_token = args[:signin_enrollment_token] if args.key?(:signin_enrollment_token)
5402
5417
  @signin_url = args[:signin_url] if args.key?(:signin_url)
@@ -5661,7 +5676,8 @@ module Google
5661
5676
  attr_accessor :application_reports_enabled
5662
5677
  alias_method :application_reports_enabled?, :application_reports_enabled
5663
5678
 
5664
- # Whether Common Criteria Mode reporting is enabled.
5679
+ # Whether Common Criteria Mode reporting is enabled. This is supported only on
5680
+ # company-owned devices.
5665
5681
  # Corresponds to the JSON property `commonCriteriaModeEnabled`
5666
5682
  # @return [Boolean]
5667
5683
  attr_accessor :common_criteria_mode_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.78.0"
19
+ GEM_VERSION = "0.79.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240724"
25
+ REVISION = "20240808"
26
26
  end
27
27
  end
28
28
  end
@@ -2148,6 +2148,7 @@ module Google
2148
2148
  # @private
2149
2149
  class Representation < Google::Apis::Core::JsonRepresentation
2150
2150
  property :allow_personal_usage, as: 'allowPersonalUsage'
2151
+ property :default_status, as: 'defaultStatus'
2151
2152
  property :qr_code, as: 'qrCode'
2152
2153
  property :signin_enrollment_token, as: 'signinEnrollmentToken'
2153
2154
  property :signin_url, as: 'signinUrl'
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.78.0
4
+ version: 0.79.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: 2024-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.79.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: []