Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2926

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion androidpublisher/v3/androidpublisher-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4732,7 +4732,7 @@
}
}
},
"revision": "20241125",
"revision": "20241216",
"rootUrl": "https://androidpublisher.googleapis.com/",
"schemas": {
"Abi": {
Expand Down Expand Up @@ -5314,6 +5314,10 @@
"priceChangeDetails": {
"$ref": "SubscriptionItemPriceChangeDetails",
"description": "The information of the last price change for the item since subscription signup."
},
"recurringPrice": {
"$ref": "Money",
"description": "The current recurring price of the auto renewing plan."
}
},
"type": "object"
Expand Down
2 changes: 2 additions & 0 deletions androidpublisher/v3/androidpublisher-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

151 changes: 150 additions & 1 deletion chromemanagement/v1/chromemanagement-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@
}
}
},
"revision": "20241210",
"revision": "20241215",
"rootUrl": "https://chromemanagement.googleapis.com/",
"schemas": {
"GoogleChromeManagementV1AndroidAppInfo": {
Expand Down Expand Up @@ -4992,6 +4992,91 @@
},
"type": "object"
},
"GoogleChromeManagementVersionsV1CertificateProvisioningProcess": {
"description": "A certificate provisioning process.",
"id": "GoogleChromeManagementVersionsV1CertificateProvisioningProcess",
"properties": {
"caConnectionAdapterConfigReference": {
"description": "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.",
"readOnly": true,
"type": "string"
},
"chromeOsDevice": {
"$ref": "GoogleChromeManagementVersionsV1ChromeOsDevice",
"description": "Output only. The client certificate is being provisioned for a ChromeOS device. This contains information about the device.",
"readOnly": true
},
"chromeOsUserSession": {
"$ref": "GoogleChromeManagementVersionsV1ChromeOsUserSession",
"description": "Output only. The client certificate is being provisioned for a ChromeOS user session. This contains information about the user session.",
"readOnly": true
},
"failureMessage": {
"description": "Output only. A message describing why this `CertificateProvisioningProcess` failed. Presence of this field indicates that the `CertificateProvisioningProcess` has failed.",
"readOnly": true,
"type": "string"
},
"issuedCertificate": {
"description": "Output only. The issued certificate for this `CertificateProvisioningProcess` in PEM format.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "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.",
"type": "string"
},
"profileAdapterConfigReference": {
"description": "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.",
"readOnly": true,
"type": "string"
},
"provisioningProfileId": {
"description": "Output only. The ID of the certificate provisioning profile.",
"readOnly": true,
"type": "string"
},
"signData": {
"description": "Output only. The data that the client was asked to sign. This field is only present after the `SignData` operation has been initiated.",
"format": "byte",
"readOnly": true,
"type": "string"
},
"signature": {
"description": "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.",
"format": "byte",
"readOnly": true,
"type": "string"
},
"signatureAlgorithm": {
"description": "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.",
"enum": [
"SIGNATURE_ALGORITHM_UNSPECIFIED",
"SIGNATURE_ALGORITHM_RSA_PKCS1_V1_5_SHA256",
"SIGNATURE_ALGORITHM_ECDSA_SHA256"
],
"enumDescriptions": [
"Default value. This value is unused.",
"The server-side builds the PKCS#1 DigestInfo, i.e., the SHA256 hash is constructed on the server-side. The client should sign using RSA with PKCS#1 v1.5 padding.",
"The PKCS#1 digest info is built by the server-side and sent to the client unhashed. The client is responsible for signing and hashing. Uses the P-256 curve."
],
"readOnly": true,
"type": "string"
},
"startTime": {
"description": "Output only. Server-generated timestamp of when the certificate provisioning process has been created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"subjectPublicKeyInfo": {
"description": "Output only. The public key for which a certificate should be provisioned. Represented as a DER-encoded X.509 SubjectPublicKeyInfo.",
"format": "byte",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementVersionsV1ChromeBrowserProfile": {
"description": "A representation of a Chrome browser profile.",
"id": "GoogleChromeManagementVersionsV1ChromeBrowserProfile",
Expand Down Expand Up @@ -5159,6 +5244,45 @@
},
"type": "object"
},
"GoogleChromeManagementVersionsV1ChromeOsDevice": {
"description": "Describes the ChromeOS device that a `CertificateProvisioningProcess` belongs to.",
"id": "GoogleChromeManagementVersionsV1ChromeOsDevice",
"properties": {
"deviceDirectoryApiId": {
"description": "Output only. The unique Directory API ID of the device. This value is the same as the Admin Console's Directory API ID in the ChromeOS Devices tab.",
"readOnly": true,
"type": "string"
},
"serialNumber": {
"description": "Output only. Device serial number. This value is the same as the Admin Console's Serial Number in the ChromeOS Devices tab.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementVersionsV1ChromeOsUserSession": {
"description": "Describes the ChromeOS user session that a `CertificateProvisioningProcess` belongs to.",
"id": "GoogleChromeManagementVersionsV1ChromeOsUserSession",
"properties": {
"chromeOsDevice": {
"$ref": "GoogleChromeManagementVersionsV1ChromeOsDevice",
"description": "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.",
"readOnly": true
},
"userDirectoryApiId": {
"description": "Output only. The unique Directory API ID of the user.",
"readOnly": true,
"type": "string"
},
"userPrimaryEmail": {
"description": "Output only. The primary e-mail address of the user.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementVersionsV1DeviceInfo": {
"description": "Information of a device that runs a Chrome browser profile.",
"id": "GoogleChromeManagementVersionsV1DeviceInfo",
Expand Down Expand Up @@ -5465,6 +5589,31 @@
},
"type": "object"
},
"GoogleChromeManagementVersionsV1SignDataMetadata": {
"description": "Metadata for the long-running operation returned by signData.",
"id": "GoogleChromeManagementVersionsV1SignDataMetadata",
"properties": {
"startTime": {
"description": "Output only. Start time of the SignData operation.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"GoogleChromeManagementVersionsV1SignDataResponse": {
"description": "Response message for requesting a signature from the client that initated a certificate provisioning process.",
"id": "GoogleChromeManagementVersionsV1SignDataResponse",
"properties": {
"certificateProvisioningProcess": {
"$ref": "GoogleChromeManagementVersionsV1CertificateProvisioningProcess",
"description": "Output only. The certificate provisioning process. The signature generated by the client will be available in the `signature` field of `CertificateProvisioningProcess`.",
"readOnly": true
}
},
"type": "object"
},
"GoogleChromeManagementVersionsV1alpha1CertificateProvisioningProcess": {
"description": "A certificate provisioning process.",
"id": "GoogleChromeManagementVersionsV1alpha1CertificateProvisioningProcess",
Expand Down
Loading