google-apis-chromemanagement_v1 0.68.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb87b3a532dff5b4383dfd2f8aebfc2e9a758d81244931232fd784891bf78bc6
4
- data.tar.gz: 87d9b40fd09b0c461a4cf231c40ab5f676e56a17a9bda61a055d7d4faa2fb2c8
3
+ metadata.gz: b6e44c4f34778b4a1329b3b17eea0d4f425332ee2254ff904e42b58bd30e7f74
4
+ data.tar.gz: 40da9586fd1b99671fbaeeb1ad52f0edac1788d5c0978556db6a2a19a32323aa
5
5
  SHA512:
6
- metadata.gz: 52c9da4288936478a285e3c42aa789c9bf443ac31e0006e57c9e6829fcbbe74e6059a94a5e0900bfe4f3d28ec7ccb7e3c2619b64008a9be2da3ec921a202760c
7
- data.tar.gz: 546afdb8a5ec6958a32f3f1a2222a85707503dab3ea3622183131c8fe3a91e1616c986254a68ef440e82387aa9c67f1ff540036bbad67f792781914d07c75cd9
6
+ metadata.gz: 509d47200cff7df9aca2819d93cdf37e09131be1db304d6d1ef605431cc3016af9e52a3cff889aa6c758513acddb2c1b13daec4cf5d222c48a33119cdcba68c7
7
+ data.tar.gz: 25345c3c089a3c4871ae90bba8719db6eaa5c69318decffd03417e43b68e6b322b945cf876f71a949303d88b119aa8a7e32f58618ed86895c87c63ed5017c39a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.68.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250721
@@ -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.68.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 = "20250721"
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
@@ -1394,6 +1394,41 @@ module Google
1394
1394
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1395
1395
  execute_or_queue_command(command, &block)
1396
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
1397
1432
 
1398
1433
  protected
1399
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.68.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.68.0
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: