google-apis-androidenterprise_v1 0.19.0 → 0.21.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3442fd181a56026a6ef445c70194829097872c4541981bb42f838cde6395b2d
|
4
|
+
data.tar.gz: '0290c8dc7884cdd2d1d45b961981260ba52640d0a2888022b254da357457b9ff'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 182cd8e6cc1f79d5723adf016635cc795fa19beb80160c1a6dd30328d0fa917b26d2ca652204f4551ca0e0c62aee33900b43b5ab21a693294d4a71d1b7b78143
|
7
|
+
data.tar.gz: 36a0cfd8d898146190f6e132c4946941e95ff99795e4ff02c09c041a3439702f8259c1acfd865de4785381b7494a76586d6b25cd57241b5ed2df66ad3e90386a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.20.0 (2023-02-19)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.12.0
|
10
|
+
|
3
11
|
### v0.19.0 (2023-01-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230111
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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.
|
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-
|
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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
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.
|
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-androidenterprise_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.
|
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: []
|