google-apis-androidmanagement_v1 0.61.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
@@ -1372,8 +1372,8 @@ module Google
|
|
1372
1372
|
# @return [Google::Apis::AndroidmanagementV1::PackageNameList]
|
1373
1373
|
attr_accessor :exemptions_to_show_work_contacts_in_personal_profile
|
1374
1374
|
|
1375
|
-
# Whether contacts stored in the work profile
|
1376
|
-
#
|
1375
|
+
# Whether personal apps can access contacts stored in the work profile.See also
|
1376
|
+
# exemptions_to_show_work_contacts_in_personal_profile.
|
1377
1377
|
# Corresponds to the JSON property `showWorkContactsInPersonalProfile`
|
1378
1378
|
# @return [String]
|
1379
1379
|
attr_accessor :show_work_contacts_in_personal_profile
|
@@ -1773,6 +1773,17 @@ module Google
|
|
1773
1773
|
# @return [String]
|
1774
1774
|
attr_accessor :airplane_mode_state
|
1775
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
|
+
|
1776
1787
|
# Controls current state of Wi-Fi and if user can change its state.
|
1777
1788
|
# Corresponds to the JSON property `wifiState`
|
1778
1789
|
# @return [String]
|
@@ -1785,6 +1796,8 @@ module Google
|
|
1785
1796
|
# Update properties of this object
|
1786
1797
|
def update!(**args)
|
1787
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)
|
1788
1801
|
@wifi_state = args[:wifi_state] if args.key?(:wifi_state)
|
1789
1802
|
end
|
1790
1803
|
end
|
@@ -4893,7 +4906,22 @@ module Google
|
|
4893
4906
|
end
|
4894
4907
|
end
|
4895
4908
|
|
4896
|
-
# 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.
|
4897
4925
|
class SigninDetail
|
4898
4926
|
include Google::Apis::Core::Hashable
|
4899
4927
|
|
@@ -4931,6 +4959,11 @@ module Google
|
|
4931
4959
|
# @return [String]
|
4932
4960
|
attr_accessor :signin_url
|
4933
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
|
+
|
4934
4967
|
def initialize(**args)
|
4935
4968
|
update!(**args)
|
4936
4969
|
end
|
@@ -4941,6 +4974,7 @@ module Google
|
|
4941
4974
|
@qr_code = args[:qr_code] if args.key?(:qr_code)
|
4942
4975
|
@signin_enrollment_token = args[:signin_enrollment_token] if args.key?(:signin_enrollment_token)
|
4943
4976
|
@signin_url = args[:signin_url] if args.key?(:signin_url)
|
4977
|
+
@token_tag = args[:token_tag] if args.key?(:token_tag)
|
4944
4978
|
end
|
4945
4979
|
end
|
4946
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
|
@@ -1211,6 +1211,8 @@ module Google
|
|
1211
1211
|
# @private
|
1212
1212
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1213
1213
|
property :airplane_mode_state, as: 'airplaneModeState'
|
1214
|
+
property :cellular_two_g_state, as: 'cellularTwoGState'
|
1215
|
+
property :ultra_wideband_state, as: 'ultraWidebandState'
|
1214
1216
|
property :wifi_state, as: 'wifiState'
|
1215
1217
|
end
|
1216
1218
|
end
|
@@ -1992,6 +1994,7 @@ module Google
|
|
1992
1994
|
property :qr_code, as: 'qrCode'
|
1993
1995
|
property :signin_enrollment_token, as: 'signinEnrollmentToken'
|
1994
1996
|
property :signin_url, as: 'signinUrl'
|
1997
|
+
property :token_tag, as: 'tokenTag'
|
1995
1998
|
end
|
1996
1999
|
end
|
1997
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: []
|