google-apis-androidenterprise_v1 0.20.0 → 0.22.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: 5a75dc189aaa016b048d0262acfe541b86d38a61c14e6ab5f58ebe69d814e31c
|
4
|
+
data.tar.gz: 57cad67ff975ef272820343c946cb889984ceeb98cd5d39146314246c4f7a37e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c7e7b692388a49dc9dfabffbe17de8b53d6c6e927664afb8971439e4a603d225a3a5a788a5db5f9a89a7b880a42d4747c6bbf401b35b287ad7b7474658abd19
|
7
|
+
data.tar.gz: 47a657c34c1ea63de5e4b661424284adfd9af89333932143fe2cafe1dbe767f0da9106629cecc27389dc239a0073fdf5e715114ba0acc8a457151adef28f8922
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidenterprise_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2023-05-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230515
|
6
|
+
|
7
|
+
### v0.21.0 (2023-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230218
|
10
|
+
|
3
11
|
### v0.20.0 (2023-02-19)
|
4
12
|
|
5
13
|
* 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
|
|
@@ -2003,6 +2047,11 @@ module Google
|
|
2003
2047
|
# @return [Array<String>]
|
2004
2048
|
attr_accessor :features
|
2005
2049
|
|
2050
|
+
# The localized full app store description, if available.
|
2051
|
+
# Corresponds to the JSON property `fullDescription`
|
2052
|
+
# @return [String]
|
2053
|
+
attr_accessor :full_description
|
2054
|
+
|
2006
2055
|
# A link to an image that can be used as an icon for the product. This image is
|
2007
2056
|
# suitable for use at up to 512px x 512px.
|
2008
2057
|
# Corresponds to the JSON property `iconUrl`
|
@@ -2094,6 +2143,7 @@ module Google
|
|
2094
2143
|
@details_url = args[:details_url] if args.key?(:details_url)
|
2095
2144
|
@distribution_channel = args[:distribution_channel] if args.key?(:distribution_channel)
|
2096
2145
|
@features = args[:features] if args.key?(:features)
|
2146
|
+
@full_description = args[:full_description] if args.key?(:full_description)
|
2097
2147
|
@icon_url = args[:icon_url] if args.key?(:icon_url)
|
2098
2148
|
@last_updated_timestamp_millis = args[:last_updated_timestamp_millis] if args.key?(:last_updated_timestamp_millis)
|
2099
2149
|
@min_android_sdk_version = args[:min_android_sdk_version] if args.key?(:min_android_sdk_version)
|
@@ -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.22.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 = "
|
25
|
+
REVISION = "20230515"
|
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
|
|
@@ -1107,6 +1114,7 @@ module Google
|
|
1107
1114
|
property :details_url, as: 'detailsUrl'
|
1108
1115
|
property :distribution_channel, as: 'distributionChannel'
|
1109
1116
|
collection :features, as: 'features'
|
1117
|
+
property :full_description, as: 'fullDescription'
|
1110
1118
|
property :icon_url, as: 'iconUrl'
|
1111
1119
|
property :last_updated_timestamp_millis, :numeric_string => true, as: 'lastUpdatedTimestampMillis'
|
1112
1120
|
property :min_android_sdk_version, as: 'minAndroidSdkVersion'
|
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.22.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-05-21 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidenterprise_v1/v0.22.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: []
|