google-apis-androidenterprise_v1 0.20.0 → 0.21.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: c504b42ffa75f30095c5d9c7ea0e93373cfa7749c065d52b5aadde9c9a1fcd0e
4
- data.tar.gz: 2478b462477ce422b0856a70ca1f6ba5ea456bc1edaa3fa291add1bac9b77c36
3
+ metadata.gz: b3442fd181a56026a6ef445c70194829097872c4541981bb42f838cde6395b2d
4
+ data.tar.gz: '0290c8dc7884cdd2d1d45b961981260ba52640d0a2888022b254da357457b9ff'
5
5
  SHA512:
6
- metadata.gz: 8461d8455dee81ad5a828e58d439a4d6d41da25e67eae36575847a9b0efc999aad7cd6187ceb15ba6607a8dc70ba78f4734266d1c31b24f9a81926c71d17fa78
7
- data.tar.gz: 7977948bfc6087bd4d44a8ea6d095fef0d623fc9128341493321847740a45f233e575dcc364628430d872fa2cd01e31e01baf5004660eea9cd6fd4d123aec5f5
6
+ metadata.gz: 182cd8e6cc1f79d5723adf016635cc795fa19beb80160c1a6dd30328d0fa917b26d2ca652204f4551ca0e0c62aee33900b43b5ab21a693294d4a71d1b7b78143
7
+ data.tar.gz: 36a0cfd8d898146190f6e132c4946941e95ff99795e4ff02c09c041a3439702f8259c1acfd865de4785381b7494a76586d6b25cd57241b5ed2df66ad3e90386a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidenterprise_v1
2
2
 
3
+ ### v0.21.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230218
6
+
3
7
  ### v0.20.0 (2023-02-19)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -685,6 +685,22 @@ module Google
685
685
  # @return [String]
686
686
  attr_accessor :android_id
687
687
 
688
+ # The internal hardware codename of the device. This comes from android.os.Build.
689
+ # DEVICE. (field named "device" per logs/wireless/android/android_checkin.proto)
690
+ # Corresponds to the JSON property `device`
691
+ # @return [String]
692
+ attr_accessor :device
693
+
694
+ # The build fingerprint of the device if known.
695
+ # Corresponds to the JSON property `latestBuildFingerprint`
696
+ # @return [String]
697
+ attr_accessor :latest_build_fingerprint
698
+
699
+ # The manufacturer of the device. This comes from android.os.Build.MANUFACTURER.
700
+ # Corresponds to the JSON property `maker`
701
+ # @return [String]
702
+ attr_accessor :maker
703
+
688
704
  # Identifies the extent to which the device is controlled by a managed Google
689
705
  # Play EMM in various deployment configurations. Possible values include: - "
690
706
  # managedDevice", a device that has the EMM's device policy controller (DPC) as
@@ -698,17 +714,38 @@ module Google
698
714
  # @return [String]
699
715
  attr_accessor :management_type
700
716
 
717
+ # The model name of the device. This comes from android.os.Build.MODEL.
718
+ # Corresponds to the JSON property `model`
719
+ # @return [String]
720
+ attr_accessor :model
721
+
701
722
  # The device policy for a given managed device.
702
723
  # Corresponds to the JSON property `policy`
703
724
  # @return [Google::Apis::AndroidenterpriseV1::Policy]
704
725
  attr_accessor :policy
705
726
 
727
+ # The product name of the device. This comes from android.os.Build.PRODUCT.
728
+ # Corresponds to the JSON property `product`
729
+ # @return [String]
730
+ attr_accessor :product
731
+
706
732
  # Device report updated with the latest app states for managed apps on the
707
733
  # device.
708
734
  # Corresponds to the JSON property `report`
709
735
  # @return [Google::Apis::AndroidenterpriseV1::DeviceReport]
710
736
  attr_accessor :report
711
737
 
738
+ # Retail brand for the device, if set. See https://developer.android.com/
739
+ # reference/android/os/Build.html#BRAND
740
+ # Corresponds to the JSON property `retailBrand`
741
+ # @return [String]
742
+ attr_accessor :retail_brand
743
+
744
+ # API compatibility version.
745
+ # Corresponds to the JSON property `sdkVersion`
746
+ # @return [Fixnum]
747
+ attr_accessor :sdk_version
748
+
712
749
  def initialize(**args)
713
750
  update!(**args)
714
751
  end
@@ -716,9 +753,16 @@ module Google
716
753
  # Update properties of this object
717
754
  def update!(**args)
718
755
  @android_id = args[:android_id] if args.key?(:android_id)
756
+ @device = args[:device] if args.key?(:device)
757
+ @latest_build_fingerprint = args[:latest_build_fingerprint] if args.key?(:latest_build_fingerprint)
758
+ @maker = args[:maker] if args.key?(:maker)
719
759
  @management_type = args[:management_type] if args.key?(:management_type)
760
+ @model = args[:model] if args.key?(:model)
720
761
  @policy = args[:policy] if args.key?(:policy)
762
+ @product = args[:product] if args.key?(:product)
721
763
  @report = args[:report] if args.key?(:report)
764
+ @retail_brand = args[:retail_brand] if args.key?(:retail_brand)
765
+ @sdk_version = args[:sdk_version] if args.key?(:sdk_version)
722
766
  end
723
767
  end
724
768
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroidenterpriseV1
18
18
  # Version of the google-apis-androidenterprise_v1 gem
19
- GEM_VERSION = "0.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230111"
25
+ REVISION = "20230218"
26
26
  end
27
27
  end
28
28
  end
@@ -745,11 +745,18 @@ module Google
745
745
  # @private
746
746
  class Representation < Google::Apis::Core::JsonRepresentation
747
747
  property :android_id, as: 'androidId'
748
+ property :device, as: 'device'
749
+ property :latest_build_fingerprint, as: 'latestBuildFingerprint'
750
+ property :maker, as: 'maker'
748
751
  property :management_type, as: 'managementType'
752
+ property :model, as: 'model'
749
753
  property :policy, as: 'policy', class: Google::Apis::AndroidenterpriseV1::Policy, decorator: Google::Apis::AndroidenterpriseV1::Policy::Representation
750
754
 
755
+ property :product, as: 'product'
751
756
  property :report, as: 'report', class: Google::Apis::AndroidenterpriseV1::DeviceReport, decorator: Google::Apis::AndroidenterpriseV1::DeviceReport::Representation
752
757
 
758
+ property :retail_brand, as: 'retailBrand'
759
+ property :sdk_version, as: 'sdkVersion'
753
760
  end
754
761
  end
755
762
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidenterprise_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.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-02-19 00:00:00.000000000 Z
11
+ date: 2023-02-26 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-androidenterprise_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidenterprise_v1
63
63
  post_install_message:
64
64
  rdoc_options: []