google-apis-admin_directory_v1 0.37.0 → 0.38.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: a0718071c807f60fb8cf415ffe062d101dcc4919b1711dc0d061147985e58295
|
|
4
|
+
data.tar.gz: 80852037ef7028e4b4f0e0c3d4fccbfcb66280cbf475fb871d193fb636587f34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc492c5012cc3a66c227d563330378c236bf857f8047e0448f79d4e9adae520416dd327f2d2d65b49ad648751df06273f9d515bc6a10f3cac5f729b12c67c7ac
|
|
7
|
+
data.tar.gz: e41e4c3757e9672c4935956c490a1e4f1313946047659afef6f50c4cd3c94c57d8688dda81633d68fc1ab4cf62d7a0b75f2429de84e9bfb05f9a57af8e77da81
|
data/CHANGELOG.md
CHANGED
|
@@ -1914,8 +1914,9 @@ module Google
|
|
|
1914
1914
|
include Google::Apis::Core::Hashable
|
|
1915
1915
|
|
|
1916
1916
|
# The payload for the command result. The following commands respond with a
|
|
1917
|
-
# payload:
|
|
1918
|
-
# the form: ` "url": url `. The URL provides a link to the
|
|
1917
|
+
# payload: * `DEVICE_START_CRD_SESSION`: Payload is a stringified JSON object in
|
|
1918
|
+
# the form: ` "url": url `. The URL provides a link to the Chrome Remote Desktop
|
|
1919
|
+
# session.
|
|
1919
1920
|
# Corresponds to the JSON property `commandResultPayload`
|
|
1920
1921
|
# @return [String]
|
|
1921
1922
|
attr_accessor :command_result_payload
|
|
@@ -1959,14 +1960,13 @@ module Google
|
|
|
1959
1960
|
attr_accessor :command_type
|
|
1960
1961
|
|
|
1961
1962
|
# The payload for the command, provide it only if command supports it. The
|
|
1962
|
-
# following commands support adding payload:
|
|
1963
|
+
# following commands support adding payload: * `SET_VOLUME`: Payload is a
|
|
1963
1964
|
# stringified JSON object in the form: ` "volume": 50 `. The volume has to be an
|
|
1964
|
-
# integer in the range [0,100].
|
|
1965
|
+
# integer in the range [0,100]. * `DEVICE_START_CRD_SESSION`: Payload is
|
|
1965
1966
|
# optionally a stringified JSON object in the form: ` "ackedUserPresence": true `
|
|
1966
|
-
# . ackedUserPresence is a boolean.
|
|
1967
|
-
#
|
|
1968
|
-
#
|
|
1969
|
-
# active device without this field.
|
|
1967
|
+
# . `ackedUserPresence` is a boolean. By default, `ackedUserPresence` is set to `
|
|
1968
|
+
# false`. To start a Chrome Remote Desktop session for an active device, set `
|
|
1969
|
+
# ackedUserPresence` to `true`.
|
|
1970
1970
|
# Corresponds to the JSON property `payload`
|
|
1971
1971
|
# @return [String]
|
|
1972
1972
|
attr_accessor :payload
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AdminDirectoryV1
|
|
18
18
|
# Version of the google-apis-admin_directory_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.38.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230124"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -4115,9 +4115,12 @@ module Google
|
|
|
4115
4115
|
end
|
|
4116
4116
|
|
|
4117
4117
|
# Updates a user using patch semantics. The update method should be used instead,
|
|
4118
|
-
#
|
|
4119
|
-
#
|
|
4120
|
-
#
|
|
4118
|
+
# because it also supports patch semantics and has better performance. If you'
|
|
4119
|
+
# re mapping an external identity to a Google identity, use the [`update`](https:
|
|
4120
|
+
# //developers.google.com/admin-sdk/directory/v1/reference/users/update) method
|
|
4121
|
+
# instead of the `patch` method. This method is unable to clear fields that
|
|
4122
|
+
# contain repeated objects (`addresses`, `phones`, etc). Use the update method
|
|
4123
|
+
# instead.
|
|
4121
4124
|
# @param [String] user_key
|
|
4122
4125
|
# Identifies the user in the API request. The value can be the user's primary
|
|
4123
4126
|
# email address, alias email address, or unique user ID.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-admin_directory_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.38.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-01-
|
|
11
|
+
date: 2023-01-29 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-admin_directory_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_directory_v1/v0.38.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_directory_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|