google-apis-chromemanagement_v1 0.21.0 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85b8a8eba1262aa674182734c3253b9144c6527c62be3c6e3e23179cbccaaa70
|
4
|
+
data.tar.gz: 7e45b31f5871744aa0eef344601b2767f3b5ad9632465734ad1ae133af771132
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c6d2ae518f70d260f7abf0ce798b8d22865bcc89eea7680d8f96ecab32f1b8e23af175e5b694687055b1a47b87e3d7e79b7fa29b8738b81c69ae221f2ea0613
|
7
|
+
data.tar.gz: bbcd8f64170205f0c037bac532f9e6d85362de0fafaaab66dbd75244d0b4bc9e0a45df214a29ffb607a70dd95cdb65b0ec454673bfadb9b068609144452e5611
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.24.0 (2022-06-19)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.7.0
|
6
|
+
|
7
|
+
### v0.23.0 (2022-06-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220606
|
10
|
+
* Regenerated using generator version 0.5.0
|
11
|
+
|
12
|
+
### v0.22.0 (2022-05-14)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220512
|
15
|
+
|
3
16
|
### v0.21.0 (2022-05-05)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20220503
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChromemanagementV1
|
18
18
|
# Version of the google-apis-chromemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220606"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -349,6 +349,39 @@ module Google
|
|
349
349
|
execute_or_queue_command(command, &block)
|
350
350
|
end
|
351
351
|
|
352
|
+
# Get telemetry device.
|
353
|
+
# @param [String] name
|
354
|
+
# Required. Name of the `TelemetryDevice` to return.
|
355
|
+
# @param [String] read_mask
|
356
|
+
# Required. Read mask to specify which fields to return.
|
357
|
+
# @param [String] fields
|
358
|
+
# Selector specifying which fields to include in a partial response.
|
359
|
+
# @param [String] quota_user
|
360
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
361
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
362
|
+
# @param [Google::Apis::RequestOptions] options
|
363
|
+
# Request-specific options
|
364
|
+
#
|
365
|
+
# @yield [result, err] Result & error if block supplied
|
366
|
+
# @yieldparam result [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDevice] parsed result object
|
367
|
+
# @yieldparam err [StandardError] error object if request failed
|
368
|
+
#
|
369
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDevice]
|
370
|
+
#
|
371
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
372
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
373
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
374
|
+
def get_customer_telemetry_device(name, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
375
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
376
|
+
command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDevice::Representation
|
377
|
+
command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDevice
|
378
|
+
command.params['name'] = name unless name.nil?
|
379
|
+
command.query['readMask'] = read_mask unless read_mask.nil?
|
380
|
+
command.query['fields'] = fields unless fields.nil?
|
381
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
382
|
+
execute_or_queue_command(command, &block)
|
383
|
+
end
|
384
|
+
|
352
385
|
# List all telemetry devices.
|
353
386
|
# @param [String] parent
|
354
387
|
# Required. Customer id or "my_customer" to use the customer associated to the
|
@@ -358,7 +391,7 @@ module Google
|
|
358
391
|
# fields: - org_unit_id - serial_number - device_id
|
359
392
|
# @param [Fixnum] page_size
|
360
393
|
# Maximum number of results to return. Default value is 100. Maximum value is
|
361
|
-
#
|
394
|
+
# 1000.
|
362
395
|
# @param [String] page_token
|
363
396
|
# Token to specify next page in the list.
|
364
397
|
# @param [String] read_mask
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chromemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.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: 2022-
|
11
|
+
date: 2022-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.6'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.6'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-chromemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.24.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Chrome Management API V1
|