google-apis-chromemanagement_v1 0.67.0 → 0.69.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +67 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +41 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +37 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6e44c4f34778b4a1329b3b17eea0d4f425332ee2254ff904e42b58bd30e7f74
|
4
|
+
data.tar.gz: 40da9586fd1b99671fbaeeb1ad52f0edac1788d5c0978556db6a2a19a32323aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 509d47200cff7df9aca2819d93cdf37e09131be1db304d6d1ef605431cc3016af9e52a3cff889aa6c758513acddb2c1b13daec4cf5d222c48a33119cdcba68c7
|
7
|
+
data.tar.gz: 25345c3c089a3c4871ae90bba8719db6eaa5c69318decffd03417e43b68e6b322b945cf876f71a949303d88b119aa8a7e32f58618ed86895c87c63ed5017c39a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.69.0 (2025-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250730
|
6
|
+
|
7
|
+
### v0.68.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250721
|
10
|
+
|
3
11
|
### v0.67.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250710
|
@@ -4776,6 +4776,46 @@ module Google
|
|
4776
4776
|
end
|
4777
4777
|
end
|
4778
4778
|
|
4779
|
+
# Request to MoveThirdPartyProfileUser method.
|
4780
|
+
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
|
4781
|
+
include Google::Apis::Core::Hashable
|
4782
|
+
|
4783
|
+
# Required. Destination organizational unit where the third party chrome profile
|
4784
|
+
# user will be moved to.
|
4785
|
+
# Corresponds to the JSON property `destinationOrgUnit`
|
4786
|
+
# @return [String]
|
4787
|
+
attr_accessor :destination_org_unit
|
4788
|
+
|
4789
|
+
def initialize(**args)
|
4790
|
+
update!(**args)
|
4791
|
+
end
|
4792
|
+
|
4793
|
+
# Update properties of this object
|
4794
|
+
def update!(**args)
|
4795
|
+
@destination_org_unit = args[:destination_org_unit] if args.key?(:destination_org_unit)
|
4796
|
+
end
|
4797
|
+
end
|
4798
|
+
|
4799
|
+
# Response for MoveThirdPartyProfileUser method.
|
4800
|
+
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse
|
4801
|
+
include Google::Apis::Core::Hashable
|
4802
|
+
|
4803
|
+
# A representation of non-Google (third party) user that is associated with a
|
4804
|
+
# managed Chrome profile.
|
4805
|
+
# Corresponds to the JSON property `thirdPartyProfileUser`
|
4806
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ThirdPartyProfileUser]
|
4807
|
+
attr_accessor :third_party_profile_user
|
4808
|
+
|
4809
|
+
def initialize(**args)
|
4810
|
+
update!(**args)
|
4811
|
+
end
|
4812
|
+
|
4813
|
+
# Update properties of this object
|
4814
|
+
def update!(**args)
|
4815
|
+
@third_party_profile_user = args[:third_party_profile_user] if args.key?(:third_party_profile_user)
|
4816
|
+
end
|
4817
|
+
end
|
4818
|
+
|
4779
4819
|
# Reporting data of a Chrome browser profile.
|
4780
4820
|
class GoogleChromeManagementVersionsV1ReportingData
|
4781
4821
|
include Google::Apis::Core::Hashable
|
@@ -5041,6 +5081,33 @@ module Google
|
|
5041
5081
|
end
|
5042
5082
|
end
|
5043
5083
|
|
5084
|
+
# A representation of non-Google (third party) user that is associated with a
|
5085
|
+
# managed Chrome profile.
|
5086
|
+
class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
|
5087
|
+
include Google::Apis::Core::Hashable
|
5088
|
+
|
5089
|
+
# Identifier. Format: customers/`customer_id`/thirdPartyProfileUsers/`
|
5090
|
+
# third_party_profile_user_id`
|
5091
|
+
# Corresponds to the JSON property `name`
|
5092
|
+
# @return [String]
|
5093
|
+
attr_accessor :name
|
5094
|
+
|
5095
|
+
# Output only. The ID of the organizational unit assigned to the user.
|
5096
|
+
# Corresponds to the JSON property `orgUnitId`
|
5097
|
+
# @return [String]
|
5098
|
+
attr_accessor :org_unit_id
|
5099
|
+
|
5100
|
+
def initialize(**args)
|
5101
|
+
update!(**args)
|
5102
|
+
end
|
5103
|
+
|
5104
|
+
# Update properties of this object
|
5105
|
+
def update!(**args)
|
5106
|
+
@name = args[:name] if args.key?(:name)
|
5107
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
5108
|
+
end
|
5109
|
+
end
|
5110
|
+
|
5044
5111
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
5045
5112
|
# messages in your APIs. A typical example is to use it as the request or the
|
5046
5113
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -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.69.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250730"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -664,6 +664,18 @@ module Google
|
|
664
664
|
include Google::Apis::Core::JsonObjectSupport
|
665
665
|
end
|
666
666
|
|
667
|
+
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
673
|
+
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
667
679
|
class GoogleChromeManagementVersionsV1ReportingData
|
668
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
681
|
|
@@ -706,6 +718,12 @@ module Google
|
|
706
718
|
include Google::Apis::Core::JsonObjectSupport
|
707
719
|
end
|
708
720
|
|
721
|
+
class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
|
+
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
725
|
+
end
|
726
|
+
|
709
727
|
class GoogleProtobufEmpty
|
710
728
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
729
|
|
@@ -1953,6 +1971,21 @@ module Google
|
|
1953
1971
|
end
|
1954
1972
|
end
|
1955
1973
|
|
1974
|
+
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
|
1975
|
+
# @private
|
1976
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1977
|
+
property :destination_org_unit, as: 'destinationOrgUnit'
|
1978
|
+
end
|
1979
|
+
end
|
1980
|
+
|
1981
|
+
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse
|
1982
|
+
# @private
|
1983
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1984
|
+
property :third_party_profile_user, as: 'thirdPartyProfileUser', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ThirdPartyProfileUser, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ThirdPartyProfileUser::Representation
|
1985
|
+
|
1986
|
+
end
|
1987
|
+
end
|
1988
|
+
|
1956
1989
|
class GoogleChromeManagementVersionsV1ReportingData
|
1957
1990
|
# @private
|
1958
1991
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2029,6 +2062,14 @@ module Google
|
|
2029
2062
|
end
|
2030
2063
|
end
|
2031
2064
|
|
2065
|
+
class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
|
2066
|
+
# @private
|
2067
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2068
|
+
property :name, as: 'name'
|
2069
|
+
property :org_unit_id, as: 'orgUnitId'
|
2070
|
+
end
|
2071
|
+
end
|
2072
|
+
|
2032
2073
|
class GoogleProtobufEmpty
|
2033
2074
|
# @private
|
2034
2075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1170,7 +1170,8 @@ module Google
|
|
1170
1170
|
# user - audio_severe_underrun_event - usb_peripherals_event -
|
1171
1171
|
# https_latency_change_event - network_state_change_event -
|
1172
1172
|
# wifi_signal_strength_event - vpn_connection_state_change_event -
|
1173
|
-
# app_install_event - app_uninstall_event - app_launch_event - os_crash_event
|
1173
|
+
# app_install_event - app_uninstall_event - app_launch_event - os_crash_event -
|
1174
|
+
# external_displays_event
|
1174
1175
|
# @param [String] fields
|
1175
1176
|
# Selector specifying which fields to include in a partial response.
|
1176
1177
|
# @param [String] quota_user
|
@@ -1393,6 +1394,41 @@ module Google
|
|
1393
1394
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1394
1395
|
execute_or_queue_command(command, &block)
|
1395
1396
|
end
|
1397
|
+
|
1398
|
+
# Moves a third party chrome profile user to a destination OU. All profiles
|
1399
|
+
# associated to that user will be moved to the destination OU.
|
1400
|
+
# @param [String] name
|
1401
|
+
# Required. Format: customers/`customer_id`/thirdPartyProfileUsers/`
|
1402
|
+
# third_party_profile_user_id`
|
1403
|
+
# @param [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest] google_chrome_management_versions_v1_move_third_party_profile_user_request_object
|
1404
|
+
# @param [String] fields
|
1405
|
+
# Selector specifying which fields to include in a partial response.
|
1406
|
+
# @param [String] quota_user
|
1407
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1408
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1409
|
+
# @param [Google::Apis::RequestOptions] options
|
1410
|
+
# Request-specific options
|
1411
|
+
#
|
1412
|
+
# @yield [result, err] Result & error if block supplied
|
1413
|
+
# @yieldparam result [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse] parsed result object
|
1414
|
+
# @yieldparam err [StandardError] error object if request failed
|
1415
|
+
#
|
1416
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse]
|
1417
|
+
#
|
1418
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1419
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1420
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1421
|
+
def move_customer_third_party_profile_user(name, google_chrome_management_versions_v1_move_third_party_profile_user_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1422
|
+
command = make_simple_command(:post, 'v1/{+name}:move', options)
|
1423
|
+
command.request_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest::Representation
|
1424
|
+
command.request_object = google_chrome_management_versions_v1_move_third_party_profile_user_request_object
|
1425
|
+
command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse::Representation
|
1426
|
+
command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse
|
1427
|
+
command.params['name'] = name unless name.nil?
|
1428
|
+
command.query['fields'] = fields unless fields.nil?
|
1429
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1430
|
+
execute_or_queue_command(command, &block)
|
1431
|
+
end
|
1396
1432
|
|
1397
1433
|
protected
|
1398
1434
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.69.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|