Skip to content

Commit c1d34aa

Browse files
feat: Automated regeneration of ChromeManagement client (#13145)
Auto-created at 2025-03-13 13:17:26 +0000 using the toys pull request generator.
1 parent d47de5f commit c1d34aa

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

clients/chrome_management/lib/google_api/chrome_management/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.ChromeManagement.V1 do
2020
API client metadata for GoogleApi.ChromeManagement.V1.
2121
"""
2222

23-
@discovery_revision "20250307"
23+
@discovery_revision "20250311"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/chrome_management/lib/google_api/chrome_management/v1/model/google_chrome_management_versions_v1_certificate_provisioning_process.ex

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,16 @@ defmodule GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1Ce
2121
2222
## Attributes
2323
24-
* `caConnectionAdapterConfigReference` (*type:* `String.t`, *default:* `nil`) - Output only. A JSON string that contains the administrator-provided configuration for the certification authority service. This field can be missing if no configuration was given.
2524
* `chromeOsDevice` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsDevice.t`, *default:* `nil`) - Output only. The client certificate is being provisioned for a ChromeOS device. This contains information about the device.
26-
* `chromeOsUserSession` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsUserSession.t`, *default:* `nil`) - Output only. The client certificate is being provisioned for a ChromeOS user session. This contains information about the user session.
27-
* `failureMessage` (*type:* `String.t`, *default:* `nil`) - Output only. A message describing why this `CertificateProvisioningProcess` failed. Presence of this field indicates that the `CertificateProvisioningProcess` has failed.
25+
* `chromeOsUserSession` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsUserSession.t`, *default:* `nil`) - Output only. The client certificate is being provisioned for a ChromeOS user. This contains information about the current user session.
26+
* `failureMessage` (*type:* `String.t`, *default:* `nil`) - Output only. A message describing why this `CertificateProvisioningProcess` has failed. Presence of this field indicates that the `CertificateProvisioningProcess` has failed.
2827
* `genericCaConnection` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1GenericCaConnection.t`, *default:* `nil`) - Output only. The CA connection is a generic CA connection.
2928
* `genericProfile` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1GenericProfile.t`, *default:* `nil`) - Output only. The profile is a generic certificate provisioning profile.
3029
* `issuedCertificate` (*type:* `String.t`, *default:* `nil`) - Output only. The issued certificate for this `CertificateProvisioningProcess` in PEM format.
3130
* `name` (*type:* `String.t`, *default:* `nil`) - Identifier. Resource name of the `CertificateProvisioningProcess`. The name pattern is given as `customers/{customer}/certificateProvisioningProcesses/{certificate_provisioning_process}` with `{customer}` being the obfuscated customer id and `{certificate_provisioning_process}` being the certificate provisioning process id.
32-
* `profileAdapterConfigReference` (*type:* `String.t`, *default:* `nil`) - Output only. A JSON string that contains the administrator-provided configuration for the certificate provisioning profile. This field can be missing if no configuration was given.
3331
* `provisioningProfileId` (*type:* `String.t`, *default:* `nil`) - Output only. The ID of the certificate provisioning profile.
3432
* `signData` (*type:* `String.t`, *default:* `nil`) - Output only. The data that the client was asked to sign. This field is only present after the `SignData` operation has been initiated.
35-
* `signature` (*type:* `String.t`, *default:* `nil`) - Output only. The signature of `signature_algorithm`, generated using the client's private key using `signature_algorithm`. This field is only present after the`SignData` operation has finished.
33+
* `signature` (*type:* `String.t`, *default:* `nil`) - Output only. The signature of `signature_algorithm`, generated using the client's private key using `signature_algorithm`. This field is only present after the `SignData` operation has finished.
3634
* `signatureAlgorithm` (*type:* `String.t`, *default:* `nil`) - Output only. The signature algorithm that the adapter expects the client and backend components to use when processing `sign_data`. This field is only present after the `SignData` operation has been initiated.
3735
* `startTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Server-generated timestamp of when the certificate provisioning process has been created.
3836
* `subjectPublicKeyInfo` (*type:* `String.t`, *default:* `nil`) - Output only. The public key for which a certificate should be provisioned. Represented as a DER-encoded X.509 SubjectPublicKeyInfo.
@@ -41,7 +39,6 @@ defmodule GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1Ce
4139
use GoogleApi.Gax.ModelBase
4240

4341
@type t :: %__MODULE__{
44-
:caConnectionAdapterConfigReference => String.t() | nil,
4542
:chromeOsDevice =>
4643
GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsDevice.t()
4744
| nil,
@@ -57,7 +54,6 @@ defmodule GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1Ce
5754
| nil,
5855
:issuedCertificate => String.t() | nil,
5956
:name => String.t() | nil,
60-
:profileAdapterConfigReference => String.t() | nil,
6157
:provisioningProfileId => String.t() | nil,
6258
:signData => String.t() | nil,
6359
:signature => String.t() | nil,
@@ -66,8 +62,6 @@ defmodule GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1Ce
6662
:subjectPublicKeyInfo => String.t() | nil
6763
}
6864

69-
field(:caConnectionAdapterConfigReference)
70-
7165
field(:chromeOsDevice,
7266
as: GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsDevice
7367
)
@@ -88,7 +82,6 @@ defmodule GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1Ce
8882

8983
field(:issuedCertificate)
9084
field(:name)
91-
field(:profileAdapterConfigReference)
9285
field(:provisioningProfileId)
9386
field(:signData)
9487
field(:signature)

clients/chrome_management/lib/google_api/chrome_management/v1/model/google_chrome_management_versions_v1_chrome_os_user_session.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1Ch
2121
2222
## Attributes
2323
24-
* `chromeOsDevice` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsDevice.t`, *default:* `nil`) - Output only. This field contains information about the ChromeOS device that the user session is running on. It is only set if the user session is affiliated, i.e. if the user is managed by the same organization that managed the ChromeOS device.
24+
* `chromeOsDevice` (*type:* `GoogleApi.ChromeManagement.V1.Model.GoogleChromeManagementVersionsV1ChromeOsDevice.t`, *default:* `nil`) - Output only. This field contains information about the ChromeOS device that the user session is running on. It is only set if the user is affiliated, i.e., if the user is managed by the same organization that manages the ChromeOS device.
2525
* `userDirectoryApiId` (*type:* `String.t`, *default:* `nil`) - Output only. The unique Directory API ID of the user.
2626
* `userPrimaryEmail` (*type:* `String.t`, *default:* `nil`) - Output only. The primary e-mail address of the user.
2727
"""

0 commit comments

Comments
 (0)