google-apis-chromemanagement_v1 0.69.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: b6e44c4f34778b4a1329b3b17eea0d4f425332ee2254ff904e42b58bd30e7f74
4
- data.tar.gz: 40da9586fd1b99671fbaeeb1ad52f0edac1788d5c0978556db6a2a19a32323aa
3
+ metadata.gz: 4ac77798b24d3ebe62a019c7c6b46fd90877bb63381450f2e02e8a4b183f6121
4
+ data.tar.gz: c1fb0b025044b78b5b72a7b141b9b80cca686625765cdf1fde7a80d64aa44fc7
5
5
  SHA512:
6
- metadata.gz: 509d47200cff7df9aca2819d93cdf37e09131be1db304d6d1ef605431cc3016af9e52a3cff889aa6c758513acddb2c1b13daec4cf5d222c48a33119cdcba68c7
7
- data.tar.gz: 25345c3c089a3c4871ae90bba8719db6eaa5c69318decffd03417e43b68e6b322b945cf876f71a949303d88b119aa8a7e32f58618ed86895c87c63ed5017c39a
6
+ metadata.gz: 97cec66ddeb1e834452c4cee7f2095ce00cd510813a8ec1f15e0a2321ca0c1874646f416ce91f053d300009247c14373b3446a6e08c661e7132a5e14bf95265a
7
+ data.tar.gz: 2f82bdc20a9c6ebb12b27211786d2e35f66070dd5c88ac12cc2d19a0d96b9038cd1a730dc72a07f4441bd5a5929b70b205077c97f0f07223de21a349a48a7891
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.69.0 (2025-08-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20250730
@@ -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)
@@ -5042,6 +5054,95 @@ module Google
5042
5054
  end
5043
5055
  end
5044
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
+
5045
5146
  # Metadata for the long-running operation returned by signData.
5046
5147
  class GoogleChromeManagementVersionsV1SignDataMetadata
5047
5148
  include Google::Apis::Core::Hashable
@@ -5081,6 +5182,32 @@ module Google
5081
5182
  end
5082
5183
  end
5083
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
+
5084
5211
  # A representation of non-Google (third party) user that is associated with a
5085
5212
  # managed Chrome profile.
5086
5213
  class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
@@ -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.69.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 = "20250730"
25
+ REVISION = "20250820"
26
26
  end
27
27
  end
28
28
  end
@@ -706,6 +706,18 @@ module Google
706
706
  include Google::Apis::Core::JsonObjectSupport
707
707
  end
708
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
+
709
721
  class GoogleChromeManagementVersionsV1SignDataMetadata
710
722
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
723
 
@@ -718,6 +730,12 @@ module Google
718
730
  include Google::Apis::Core::JsonObjectSupport
719
731
  end
720
732
 
733
+ class GoogleChromeManagementVersionsV1SubjectAltName
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
721
739
  class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
722
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
723
741
 
@@ -1843,6 +1861,10 @@ module Google
1843
1861
  property :issued_certificate, as: 'issuedCertificate'
1844
1862
  property :name, as: 'name'
1845
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
+
1846
1868
  property :sign_data, :base64 => true, as: 'signData'
1847
1869
  property :signature, :base64 => true, as: 'signature'
1848
1870
  property :signature_algorithm, as: 'signatureAlgorithm'
@@ -2047,6 +2069,29 @@ module Google
2047
2069
  end
2048
2070
  end
2049
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
+
2050
2095
  class GoogleChromeManagementVersionsV1SignDataMetadata
2051
2096
  # @private
2052
2097
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2062,6 +2107,14 @@ module Google
2062
2107
  end
2063
2108
  end
2064
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
+
2065
2118
  class GoogleChromeManagementVersionsV1ThirdPartyProfileUser
2066
2119
  # @private
2067
2120
  class Representation < Google::Apis::Core::JsonRepresentation
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.69.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.69.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: