google-apis-chromemanagement_v1 0.68.0 → 0.70.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: 4ac77798b24d3ebe62a019c7c6b46fd90877bb63381450f2e02e8a4b183f6121
4
+ data.tar.gz: c1fb0b025044b78b5b72a7b141b9b80cca686625765cdf1fde7a80d64aa44fc7
5
5
  SHA512:
6
- metadata.gz: 52c9da4288936478a285e3c42aa789c9bf443ac31e0006e57c9e6829fcbbe74e6059a94a5e0900bfe4f3d28ec7ccb7e3c2619b64008a9be2da3ec921a202760c
7
- data.tar.gz: 546afdb8a5ec6958a32f3f1a2222a85707503dab3ea3622183131c8fe3a91e1616c986254a68ef440e82387aa9c67f1ff540036bbad67f792781914d07c75cd9
6
+ metadata.gz: 97cec66ddeb1e834452c4cee7f2095ce00cd510813a8ec1f15e0a2321ca0c1874646f416ce91f053d300009247c14373b3446a6e08c661e7132a5e14bf95265a
7
+ data.tar.gz: 2f82bdc20a9c6ebb12b27211786d2e35f66070dd5c88ac12cc2d19a0d96b9038cd1a730dc72a07f4441bd5a5929b70b205077c97f0f07223de21a349a48a7891
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-chromemanagement_v1
2
2
 
3
+ ### v0.70.0 (2025-08-24)
4
+
5
+ * Regenerated from discovery document revision 20250820
6
+
7
+ ### v0.69.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250730
10
+
3
11
  ### v0.68.0 (2025-07-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20250721
@@ -4246,6 +4246,16 @@ module Google
4246
4246
  # @return [String]
4247
4247
  attr_accessor :provisioning_profile_id
4248
4248
 
4249
+ # Describes a SCEP Certificate Authority Connection.
4250
+ # Corresponds to the JSON property `scepCaConnection`
4251
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ScepCaConnection]
4252
+ attr_accessor :scep_ca_connection
4253
+
4254
+ # Describes a SCEP certificate provisioning profile.
4255
+ # Corresponds to the JSON property `scepProfile`
4256
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ScepProfile]
4257
+ attr_accessor :scep_profile
4258
+
4249
4259
  # Output only. The data that the client was asked to sign. This field is only
4250
4260
  # present after the `SignData` operation has been initiated.
4251
4261
  # Corresponds to the JSON property `signData`
@@ -4295,6 +4305,8 @@ module Google
4295
4305
  @issued_certificate = args[:issued_certificate] if args.key?(:issued_certificate)
4296
4306
  @name = args[:name] if args.key?(:name)
4297
4307
  @provisioning_profile_id = args[:provisioning_profile_id] if args.key?(:provisioning_profile_id)
4308
+ @scep_ca_connection = args[:scep_ca_connection] if args.key?(:scep_ca_connection)
4309
+ @scep_profile = args[:scep_profile] if args.key?(:scep_profile)
4298
4310
  @sign_data = args[:sign_data] if args.key?(:sign_data)
4299
4311
  @signature = args[:signature] if args.key?(:signature)
4300
4312
  @signature_algorithm = args[:signature_algorithm] if args.key?(:signature_algorithm)
@@ -4776,6 +4788,46 @@ module Google
4776
4788
  end
4777
4789
  end
4778
4790
 
4791
+ # Request to MoveThirdPartyProfileUser method.
4792
+ class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
4793
+ include Google::Apis::Core::Hashable
4794
+
4795
+ # Required. Destination organizational unit where the third party chrome profile
4796
+ # user will be moved to.
4797
+ # Corresponds to the JSON property `destinationOrgUnit`
4798
+ # @return [String]
4799
+ attr_accessor :destination_org_unit
4800
+
4801
+ def initialize(**args)
4802
+ update!(**args)
4803
+ end
4804
+
4805
+ # Update properties of this object
4806
+ def update!(**args)
4807
+ @destination_org_unit = args[:destination_org_unit] if args.key?(:destination_org_unit)
4808
+ end
4809
+ end
4810
+
4811
+ # Response for MoveThirdPartyProfileUser method.
4812
+ class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse
4813
+ include Google::Apis::Core::Hashable
4814
+
4815
+ # A representation of non-Google (third party) user that is associated with a
4816
+ # managed Chrome profile.
4817
+ # Corresponds to the JSON property `thirdPartyProfileUser`
4818
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ThirdPartyProfileUser]
4819
+ attr_accessor :third_party_profile_user
4820
+
4821
+ def initialize(**args)
4822
+ update!(**args)
4823
+ end
4824
+
4825
+ # Update properties of this object
4826
+ def update!(**args)
4827
+ @third_party_profile_user = args[:third_party_profile_user] if args.key?(:third_party_profile_user)
4828
+ end
4829
+ end
4830
+
4779
4831
  # Reporting data of a Chrome browser profile.
4780
4832
  class GoogleChromeManagementVersionsV1ReportingData
4781
4833
  include Google::Apis::Core::Hashable
@@ -5002,6 +5054,95 @@ module Google
5002
5054
  end
5003
5055
  end
5004
5056
 
5057
+ # Describes a SCEP Certificate Authority Connection.
5058
+ class GoogleChromeManagementVersionsV1ScepCaConnection
5059
+ include Google::Apis::Core::Hashable
5060
+
5061
+ # Output only. A string that references the administrator-provided configuration
5062
+ # for the certification authority service. This field can be missing if no
5063
+ # configuration was given.
5064
+ # Corresponds to the JSON property `caConnectionAdapterConfigReference`
5065
+ # @return [String]
5066
+ attr_accessor :ca_connection_adapter_config_reference
5067
+
5068
+ def initialize(**args)
5069
+ update!(**args)
5070
+ end
5071
+
5072
+ # Update properties of this object
5073
+ def update!(**args)
5074
+ @ca_connection_adapter_config_reference = args[:ca_connection_adapter_config_reference] if args.key?(:ca_connection_adapter_config_reference)
5075
+ end
5076
+ end
5077
+
5078
+ # Describes a SCEP certificate provisioning profile.
5079
+ class GoogleChromeManagementVersionsV1ScepProfile
5080
+ include Google::Apis::Core::Hashable
5081
+
5082
+ # Output only. The certificate template name as defined by the admin on their on-
5083
+ # prem infrastructure. This is identifiable by the customer's CA.
5084
+ # Corresponds to the JSON property `certificateTemplateName`
5085
+ # @return [String]
5086
+ attr_accessor :certificate_template_name
5087
+
5088
+ # Output only. The country of the subject.
5089
+ # Corresponds to the JSON property `country`
5090
+ # @return [String]
5091
+ attr_accessor :country
5092
+
5093
+ # Output only. The allowed key usages for certificate's key.
5094
+ # Corresponds to the JSON property `keyUsages`
5095
+ # @return [Array<String>]
5096
+ attr_accessor :key_usages
5097
+
5098
+ # Output only. The locality of the subject.
5099
+ # Corresponds to the JSON property `locality`
5100
+ # @return [String]
5101
+ attr_accessor :locality
5102
+
5103
+ # Output only. The name of the organization the subject belongs to.
5104
+ # Corresponds to the JSON property `organization`
5105
+ # @return [String]
5106
+ attr_accessor :organization
5107
+
5108
+ # Output only. The organizational units of the subject.
5109
+ # Corresponds to the JSON property `organizationalUnits`
5110
+ # @return [Array<String>]
5111
+ attr_accessor :organizational_units
5112
+
5113
+ # Output only. The state of the subject.
5114
+ # Corresponds to the JSON property `state`
5115
+ # @return [String]
5116
+ attr_accessor :state
5117
+
5118
+ # Output only. The subject alternative names.
5119
+ # Corresponds to the JSON property `subjectAltNames`
5120
+ # @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1SubjectAltName>]
5121
+ attr_accessor :subject_alt_names
5122
+
5123
+ # Output only. The common name of the subject.
5124
+ # Corresponds to the JSON property `subjectCommonName`
5125
+ # @return [String]
5126
+ attr_accessor :subject_common_name
5127
+
5128
+ def initialize(**args)
5129
+ update!(**args)
5130
+ end
5131
+
5132
+ # Update properties of this object
5133
+ def update!(**args)
5134
+ @certificate_template_name = args[:certificate_template_name] if args.key?(:certificate_template_name)
5135
+ @country = args[:country] if args.key?(:country)
5136
+ @key_usages = args[:key_usages] if args.key?(:key_usages)
5137
+ @locality = args[:locality] if args.key?(:locality)
5138
+ @organization = args[:organization] if args.key?(:organization)
5139
+ @organizational_units = args[:organizational_units] if args.key?(:organizational_units)
5140
+ @state = args[:state] if args.key?(:state)
5141
+ @subject_alt_names = args[:subject_alt_names] if args.key?(:subject_alt_names)
5142
+ @subject_common_name = args[:subject_common_name] if args.key?(:subject_common_name)
5143
+ end
5144
+ end
5145
+
5005
5146
  # Metadata for the long-running operation returned by signData.
5006
5147
  class GoogleChromeManagementVersionsV1SignDataMetadata
5007
5148
  include Google::Apis::Core::Hashable
@@ -5041,6 +5182,59 @@ module Google
5041
5182
  end
5042
5183
  end
5043
5184
 
5185
+ # Describes a subject alternative name.
5186
+ class GoogleChromeManagementVersionsV1SubjectAltName
5187
+ include Google::Apis::Core::Hashable
5188
+
5189
+ # Output only. The type of the SubjectAltName extension.
5190
+ # Corresponds to the JSON property `type`
5191
+ # @return [String]
5192
+ attr_accessor :type
5193
+
5194
+ # Output only. The value of the subject alternative name with respoect to the `
5195
+ # type`.
5196
+ # Corresponds to the JSON property `value`
5197
+ # @return [String]
5198
+ attr_accessor :value
5199
+
5200
+ def initialize(**args)
5201
+ update!(**args)
5202
+ end
5203
+
5204
+ # Update properties of this object
5205
+ def update!(**args)
5206
+ @type = args[:type] if args.key?(:type)
5207
+ @value = args[:value] if args.key?(:value)
5208
+ end
5209
+ end
5210
+
5211
+ # A representation of non-Google (third party) user that is associated with a
5212
+ # managed Chrome profile.
5213
+ class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
5214
+ include Google::Apis::Core::Hashable
5215
+
5216
+ # Identifier. Format: customers/`customer_id`/thirdPartyProfileUsers/`
5217
+ # third_party_profile_user_id`
5218
+ # Corresponds to the JSON property `name`
5219
+ # @return [String]
5220
+ attr_accessor :name
5221
+
5222
+ # Output only. The ID of the organizational unit assigned to the user.
5223
+ # Corresponds to the JSON property `orgUnitId`
5224
+ # @return [String]
5225
+ attr_accessor :org_unit_id
5226
+
5227
+ def initialize(**args)
5228
+ update!(**args)
5229
+ end
5230
+
5231
+ # Update properties of this object
5232
+ def update!(**args)
5233
+ @name = args[:name] if args.key?(:name)
5234
+ @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
5235
+ end
5236
+ end
5237
+
5044
5238
  # A generic empty message that you can re-use to avoid defining duplicated empty
5045
5239
  # messages in your APIs. A typical example is to use it as the request or the
5046
5240
  # 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.70.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 = "20250820"
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
 
@@ -694,6 +706,18 @@ module Google
694
706
  include Google::Apis::Core::JsonObjectSupport
695
707
  end
696
708
 
709
+ class GoogleChromeManagementVersionsV1ScepCaConnection
710
+ class Representation < Google::Apis::Core::JsonRepresentation; end
711
+
712
+ include Google::Apis::Core::JsonObjectSupport
713
+ end
714
+
715
+ class GoogleChromeManagementVersionsV1ScepProfile
716
+ class Representation < Google::Apis::Core::JsonRepresentation; end
717
+
718
+ include Google::Apis::Core::JsonObjectSupport
719
+ end
720
+
697
721
  class GoogleChromeManagementVersionsV1SignDataMetadata
698
722
  class Representation < Google::Apis::Core::JsonRepresentation; end
699
723
 
@@ -706,6 +730,18 @@ module Google
706
730
  include Google::Apis::Core::JsonObjectSupport
707
731
  end
708
732
 
733
+ class GoogleChromeManagementVersionsV1SubjectAltName
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
739
+ class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
740
+ class Representation < Google::Apis::Core::JsonRepresentation; end
741
+
742
+ include Google::Apis::Core::JsonObjectSupport
743
+ end
744
+
709
745
  class GoogleProtobufEmpty
710
746
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
747
 
@@ -1825,6 +1861,10 @@ module Google
1825
1861
  property :issued_certificate, as: 'issuedCertificate'
1826
1862
  property :name, as: 'name'
1827
1863
  property :provisioning_profile_id, as: 'provisioningProfileId'
1864
+ property :scep_ca_connection, as: 'scepCaConnection', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ScepCaConnection, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ScepCaConnection::Representation
1865
+
1866
+ property :scep_profile, as: 'scepProfile', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ScepProfile, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ScepProfile::Representation
1867
+
1828
1868
  property :sign_data, :base64 => true, as: 'signData'
1829
1869
  property :signature, :base64 => true, as: 'signature'
1830
1870
  property :signature_algorithm, as: 'signatureAlgorithm'
@@ -1953,6 +1993,21 @@ module Google
1953
1993
  end
1954
1994
  end
1955
1995
 
1996
+ class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
1997
+ # @private
1998
+ class Representation < Google::Apis::Core::JsonRepresentation
1999
+ property :destination_org_unit, as: 'destinationOrgUnit'
2000
+ end
2001
+ end
2002
+
2003
+ class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse
2004
+ # @private
2005
+ class Representation < Google::Apis::Core::JsonRepresentation
2006
+ property :third_party_profile_user, as: 'thirdPartyProfileUser', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ThirdPartyProfileUser, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ThirdPartyProfileUser::Representation
2007
+
2008
+ end
2009
+ end
2010
+
1956
2011
  class GoogleChromeManagementVersionsV1ReportingData
1957
2012
  # @private
1958
2013
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2014,6 +2069,29 @@ module Google
2014
2069
  end
2015
2070
  end
2016
2071
 
2072
+ class GoogleChromeManagementVersionsV1ScepCaConnection
2073
+ # @private
2074
+ class Representation < Google::Apis::Core::JsonRepresentation
2075
+ property :ca_connection_adapter_config_reference, as: 'caConnectionAdapterConfigReference'
2076
+ end
2077
+ end
2078
+
2079
+ class GoogleChromeManagementVersionsV1ScepProfile
2080
+ # @private
2081
+ class Representation < Google::Apis::Core::JsonRepresentation
2082
+ property :certificate_template_name, as: 'certificateTemplateName'
2083
+ property :country, as: 'country'
2084
+ collection :key_usages, as: 'keyUsages'
2085
+ property :locality, as: 'locality'
2086
+ property :organization, as: 'organization'
2087
+ collection :organizational_units, as: 'organizationalUnits'
2088
+ property :state, as: 'state'
2089
+ collection :subject_alt_names, as: 'subjectAltNames', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1SubjectAltName, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1SubjectAltName::Representation
2090
+
2091
+ property :subject_common_name, as: 'subjectCommonName'
2092
+ end
2093
+ end
2094
+
2017
2095
  class GoogleChromeManagementVersionsV1SignDataMetadata
2018
2096
  # @private
2019
2097
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2029,6 +2107,22 @@ module Google
2029
2107
  end
2030
2108
  end
2031
2109
 
2110
+ class GoogleChromeManagementVersionsV1SubjectAltName
2111
+ # @private
2112
+ class Representation < Google::Apis::Core::JsonRepresentation
2113
+ property :type, as: 'type'
2114
+ property :value, as: 'value'
2115
+ end
2116
+ end
2117
+
2118
+ class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
2119
+ # @private
2120
+ class Representation < Google::Apis::Core::JsonRepresentation
2121
+ property :name, as: 'name'
2122
+ property :org_unit_id, as: 'orgUnitId'
2123
+ end
2124
+ end
2125
+
2032
2126
  class GoogleProtobufEmpty
2033
2127
  # @private
2034
2128
  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.70.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.70.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: