google-apis-androidmanagement_v1 0.8.0 → 0.13.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: 8e7a67fa94bac577f12fe26183b5c13798ec4165b76d568660398db0ed15376d
|
4
|
+
data.tar.gz: 80c84a78be58e88bbdac1a00b979b5c0f29c58d0cd265b43cbbb3513f4b496f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7541f79396e5e55a23ac0c3e72ad70fada6678c3ffbf742b990eb3044d64b4a3a4052e2301ea30565965c7146620cf0a0ed13c981595b949f174928c78f07124
|
7
|
+
data.tar.gz: 596d9396d7ebd4424d51916a8fe04d2e1a9773ba42a11392a025632ed353045fc303d0a5a35795016444a8f4d5639d9f873ba67abc87a22575792bb132996581
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.4.0
|
6
|
+
|
7
|
+
### v0.12.0 (2021-06-24)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.11.0 (2021-06-15)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210607
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.10.0 (2021-06-01)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210524
|
19
|
+
|
20
|
+
### v0.9.0 (2021-05-19)
|
21
|
+
|
22
|
+
* Unspecified changes
|
23
|
+
|
3
24
|
### v0.8.0 (2021-04-18)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210405
|
@@ -262,7 +262,7 @@ module Google
|
|
262
262
|
# @return [Array<String>]
|
263
263
|
attr_accessor :accessible_track_ids
|
264
264
|
|
265
|
-
#
|
265
|
+
# Controls the auto-update mode for the app.
|
266
266
|
# Corresponds to the JSON property `autoUpdateMode`
|
267
267
|
# @return [String]
|
268
268
|
attr_accessor :auto_update_mode
|
@@ -840,6 +840,13 @@ module Google
|
|
840
840
|
# @return [Array<Google::Apis::AndroidmanagementV1::ApplicationReport>]
|
841
841
|
attr_accessor :application_reports
|
842
842
|
|
843
|
+
# The password requirements currently applied to the device. The applied
|
844
|
+
# requirements may be slightly different from those specified in
|
845
|
+
# passwordPolicies in some cases. fieldPath is set based on passwordPolicies.
|
846
|
+
# Corresponds to the JSON property `appliedPasswordPolicies`
|
847
|
+
# @return [Array<Google::Apis::AndroidmanagementV1::PasswordRequirements>]
|
848
|
+
attr_accessor :applied_password_policies
|
849
|
+
|
843
850
|
# The name of the policy currently applied to the device.
|
844
851
|
# Corresponds to the JSON property `appliedPolicyName`
|
845
852
|
# @return [String]
|
@@ -1041,6 +1048,7 @@ module Google
|
|
1041
1048
|
def update!(**args)
|
1042
1049
|
@api_level = args[:api_level] if args.key?(:api_level)
|
1043
1050
|
@application_reports = args[:application_reports] if args.key?(:application_reports)
|
1051
|
+
@applied_password_policies = args[:applied_password_policies] if args.key?(:applied_password_policies)
|
1044
1052
|
@applied_policy_name = args[:applied_policy_name] if args.key?(:applied_policy_name)
|
1045
1053
|
@applied_policy_version = args[:applied_policy_version] if args.key?(:applied_policy_version)
|
1046
1054
|
@applied_state = args[:applied_state] if args.key?(:applied_state)
|
@@ -1629,6 +1637,19 @@ module Google
|
|
1629
1637
|
end
|
1630
1638
|
end
|
1631
1639
|
|
1640
|
+
# Response on issuing a command. This is currently empty as a placeholder.
|
1641
|
+
class IssueCommandResponse
|
1642
|
+
include Google::Apis::Core::Hashable
|
1643
|
+
|
1644
|
+
def initialize(**args)
|
1645
|
+
update!(**args)
|
1646
|
+
end
|
1647
|
+
|
1648
|
+
# Update properties of this object
|
1649
|
+
def update!(**args)
|
1650
|
+
end
|
1651
|
+
end
|
1652
|
+
|
1632
1653
|
# Keyed app state reported by the app.
|
1633
1654
|
class KeyedAppState
|
1634
1655
|
include Google::Apis::Core::Hashable
|
@@ -2590,6 +2611,8 @@ module Google
|
|
2590
2611
|
# @return [Array<String>]
|
2591
2612
|
attr_accessor :android_device_policy_tracks
|
2592
2613
|
|
2614
|
+
# Deprecated. Use autoUpdateMode instead.When autoUpdateMode is set to
|
2615
|
+
# AUTO_UPDATE_POSTPONED or AUTO_UPDATE_HIGH_PRIORITY, this field has no effect.
|
2593
2616
|
# The app auto update policy, which controls when automatic app updates can be
|
2594
2617
|
# applied.
|
2595
2618
|
# Corresponds to the JSON property `appAutoUpdatePolicy`
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210607"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class IssueCommandResponse
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class KeyedAppState
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -663,6 +669,8 @@ module Google
|
|
663
669
|
property :api_level, as: 'apiLevel'
|
664
670
|
collection :application_reports, as: 'applicationReports', class: Google::Apis::AndroidmanagementV1::ApplicationReport, decorator: Google::Apis::AndroidmanagementV1::ApplicationReport::Representation
|
665
671
|
|
672
|
+
collection :applied_password_policies, as: 'appliedPasswordPolicies', class: Google::Apis::AndroidmanagementV1::PasswordRequirements, decorator: Google::Apis::AndroidmanagementV1::PasswordRequirements::Representation
|
673
|
+
|
666
674
|
property :applied_policy_name, as: 'appliedPolicyName'
|
667
675
|
property :applied_policy_version, :numeric_string => true, as: 'appliedPolicyVersion'
|
668
676
|
property :applied_state, as: 'appliedState'
|
@@ -832,6 +840,12 @@ module Google
|
|
832
840
|
end
|
833
841
|
end
|
834
842
|
|
843
|
+
class IssueCommandResponse
|
844
|
+
# @private
|
845
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
846
|
+
end
|
847
|
+
end
|
848
|
+
|
835
849
|
class KeyedAppState
|
836
850
|
# @private
|
837
851
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-androidmanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.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: 2021-05
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Android Management API V1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidmanagement_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.13.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androidmanagement_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|