google-apis-androidmanagement_v1 0.60.0 → 0.62.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: 3aaf251f24ab285c14bb1dabdbe1d8ac372f101b631819d9ca01a029b96a5d09
|
4
|
+
data.tar.gz: 89173e4524a2117004ca2d4e547e3e40609e4f95c5edf506d4455491e668e00a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1ca4d133ca6b4cc65ad75ccbe0ca1291dda8c36938f7c22555c9360ee38f4eb59e5928190a91905f2eb628c278d075a91500ee6826c70c8214bd61fde815a76
|
7
|
+
data.tar.gz: c962f907d2af151e8b4e5deca22ddd6517d42eb8421d03fa85b0b5fe493db5cb88a43290e4fa71280ed0ce613e2e3fe3979f8c02d15369b1fb09aadfc1ae5e19
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidmanagement_v1
|
2
2
|
|
3
|
+
### v0.62.0 (2023-10-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231004
|
6
|
+
|
7
|
+
### v0.61.0 (2023-09-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230911
|
10
|
+
|
3
11
|
### v0.60.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230828
|
@@ -1367,8 +1367,13 @@ module Google
|
|
1367
1367
|
# @return [String]
|
1368
1368
|
attr_accessor :cross_profile_data_sharing
|
1369
1369
|
|
1370
|
-
#
|
1371
|
-
#
|
1370
|
+
# A list of package names.
|
1371
|
+
# Corresponds to the JSON property `exemptionsToShowWorkContactsInPersonalProfile`
|
1372
|
+
# @return [Google::Apis::AndroidmanagementV1::PackageNameList]
|
1373
|
+
attr_accessor :exemptions_to_show_work_contacts_in_personal_profile
|
1374
|
+
|
1375
|
+
# Whether personal apps can access contacts stored in the work profile.See also
|
1376
|
+
# exemptions_to_show_work_contacts_in_personal_profile.
|
1372
1377
|
# Corresponds to the JSON property `showWorkContactsInPersonalProfile`
|
1373
1378
|
# @return [String]
|
1374
1379
|
attr_accessor :show_work_contacts_in_personal_profile
|
@@ -1388,6 +1393,7 @@ module Google
|
|
1388
1393
|
def update!(**args)
|
1389
1394
|
@cross_profile_copy_paste = args[:cross_profile_copy_paste] if args.key?(:cross_profile_copy_paste)
|
1390
1395
|
@cross_profile_data_sharing = args[:cross_profile_data_sharing] if args.key?(:cross_profile_data_sharing)
|
1396
|
+
@exemptions_to_show_work_contacts_in_personal_profile = args[:exemptions_to_show_work_contacts_in_personal_profile] if args.key?(:exemptions_to_show_work_contacts_in_personal_profile)
|
1391
1397
|
@show_work_contacts_in_personal_profile = args[:show_work_contacts_in_personal_profile] if args.key?(:show_work_contacts_in_personal_profile)
|
1392
1398
|
@work_profile_widgets_default = args[:work_profile_widgets_default] if args.key?(:work_profile_widgets_default)
|
1393
1399
|
end
|
@@ -1767,6 +1773,17 @@ module Google
|
|
1767
1773
|
# @return [String]
|
1768
1774
|
attr_accessor :airplane_mode_state
|
1769
1775
|
|
1776
|
+
# Controls whether cellular 2G setting can be toggled by the user or not.
|
1777
|
+
# Corresponds to the JSON property `cellularTwoGState`
|
1778
|
+
# @return [String]
|
1779
|
+
attr_accessor :cellular_two_g_state
|
1780
|
+
|
1781
|
+
# Controls the state of the ultra wideband setting and whether the user can
|
1782
|
+
# toggle it on or off.
|
1783
|
+
# Corresponds to the JSON property `ultraWidebandState`
|
1784
|
+
# @return [String]
|
1785
|
+
attr_accessor :ultra_wideband_state
|
1786
|
+
|
1770
1787
|
# Controls current state of Wi-Fi and if user can change its state.
|
1771
1788
|
# Corresponds to the JSON property `wifiState`
|
1772
1789
|
# @return [String]
|
@@ -1779,6 +1796,8 @@ module Google
|
|
1779
1796
|
# Update properties of this object
|
1780
1797
|
def update!(**args)
|
1781
1798
|
@airplane_mode_state = args[:airplane_mode_state] if args.key?(:airplane_mode_state)
|
1799
|
+
@cellular_two_g_state = args[:cellular_two_g_state] if args.key?(:cellular_two_g_state)
|
1800
|
+
@ultra_wideband_state = args[:ultra_wideband_state] if args.key?(:ultra_wideband_state)
|
1782
1801
|
@wifi_state = args[:wifi_state] if args.key?(:wifi_state)
|
1783
1802
|
end
|
1784
1803
|
end
|
@@ -4887,7 +4906,22 @@ module Google
|
|
4887
4906
|
end
|
4888
4907
|
end
|
4889
4908
|
|
4890
|
-
# A resource containing sign in details for an enterprise.
|
4909
|
+
# A resource containing sign in details for an enterprise. Use enterprises to
|
4910
|
+
# manage SigninDetails for a given enterprise. For an enterprise, we can have
|
4911
|
+
# any number of SigninDetails that is uniquely identified by combination of the
|
4912
|
+
# following three fields (signin_url, allow_personal_usage, token_tag). One
|
4913
|
+
# cannot create two SigninDetails with the same (signin_url,
|
4914
|
+
# allow_personal_usage, token_tag). (token_tag is an optional field) Patch: The
|
4915
|
+
# operation updates the current list of SigninDetails with the new list of
|
4916
|
+
# SigninDetails. If the stored SigninDetail configuration is passed, it returns
|
4917
|
+
# the same signin_enrollment_token and qr_code. If we pass multiple identical
|
4918
|
+
# SigninDetail configurations that are not stored, it will store the first one
|
4919
|
+
# amongst those SigninDetail configurations and if the configuration already
|
4920
|
+
# exists we cannot request it more than once in a particular patch API call,
|
4921
|
+
# otherwise it will give a duplicate key error and the whole operation will fail.
|
4922
|
+
# If we remove certain SigninDetail configuration from the request then it will
|
4923
|
+
# get removed from the storage. And then we can request for another
|
4924
|
+
# signin_enrollment_token and qr_code for the same SigninDetail configuration.
|
4891
4925
|
class SigninDetail
|
4892
4926
|
include Google::Apis::Core::Hashable
|
4893
4927
|
|
@@ -4925,6 +4959,11 @@ module Google
|
|
4925
4959
|
# @return [String]
|
4926
4960
|
attr_accessor :signin_url
|
4927
4961
|
|
4962
|
+
# An EMM-specified tag to distinguish between instances of SigninDetail.
|
4963
|
+
# Corresponds to the JSON property `tokenTag`
|
4964
|
+
# @return [String]
|
4965
|
+
attr_accessor :token_tag
|
4966
|
+
|
4928
4967
|
def initialize(**args)
|
4929
4968
|
update!(**args)
|
4930
4969
|
end
|
@@ -4935,6 +4974,7 @@ module Google
|
|
4935
4974
|
@qr_code = args[:qr_code] if args.key?(:qr_code)
|
4936
4975
|
@signin_enrollment_token = args[:signin_enrollment_token] if args.key?(:signin_enrollment_token)
|
4937
4976
|
@signin_url = args[:signin_url] if args.key?(:signin_url)
|
4977
|
+
@token_tag = args[:token_tag] if args.key?(:token_tag)
|
4938
4978
|
end
|
4939
4979
|
end
|
4940
4980
|
|
@@ -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.62.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 = "20231004"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1117,6 +1117,8 @@ module Google
|
|
1117
1117
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1118
1118
|
property :cross_profile_copy_paste, as: 'crossProfileCopyPaste'
|
1119
1119
|
property :cross_profile_data_sharing, as: 'crossProfileDataSharing'
|
1120
|
+
property :exemptions_to_show_work_contacts_in_personal_profile, as: 'exemptionsToShowWorkContactsInPersonalProfile', class: Google::Apis::AndroidmanagementV1::PackageNameList, decorator: Google::Apis::AndroidmanagementV1::PackageNameList::Representation
|
1121
|
+
|
1120
1122
|
property :show_work_contacts_in_personal_profile, as: 'showWorkContactsInPersonalProfile'
|
1121
1123
|
property :work_profile_widgets_default, as: 'workProfileWidgetsDefault'
|
1122
1124
|
end
|
@@ -1209,6 +1211,8 @@ module Google
|
|
1209
1211
|
# @private
|
1210
1212
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1211
1213
|
property :airplane_mode_state, as: 'airplaneModeState'
|
1214
|
+
property :cellular_two_g_state, as: 'cellularTwoGState'
|
1215
|
+
property :ultra_wideband_state, as: 'ultraWidebandState'
|
1212
1216
|
property :wifi_state, as: 'wifiState'
|
1213
1217
|
end
|
1214
1218
|
end
|
@@ -1990,6 +1994,7 @@ module Google
|
|
1990
1994
|
property :qr_code, as: 'qrCode'
|
1991
1995
|
property :signin_enrollment_token, as: 'signinEnrollmentToken'
|
1992
1996
|
property :signin_url, as: 'signinUrl'
|
1997
|
+
property :token_tag, as: 'tokenTag'
|
1993
1998
|
end
|
1994
1999
|
end
|
1995
2000
|
|
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.
|
4
|
+
version: 0.62.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-10-08 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.62.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: []
|