@maxim_mazurok/gapi.client.chromemanagement-v1 0.0.20250211 → 0.0.20250212
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.
- package/index.d.ts +25 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://chromemanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250212
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1040,6 +1040,10 @@ declare namespace gapi.client {
|
|
|
1040
1040
|
chromeOsUserSession?: GoogleChromeManagementVersionsV1alpha1ChromeOsUserSession;
|
|
1041
1041
|
/** Output only. A message describing why this `CertificateProvisioningProcess` failed. Presence of this field indicates that the `CertificateProvisioningProcess` has failed. */
|
|
1042
1042
|
failureMessage?: string;
|
|
1043
|
+
/** Output only. The CA connection is a generic CA connection. */
|
|
1044
|
+
genericCaConnection?: GoogleChromeManagementVersionsV1alpha1GenericCaConnection;
|
|
1045
|
+
/** Output only. The profile is a generic certificate provisioning profile. */
|
|
1046
|
+
genericProfile?: GoogleChromeManagementVersionsV1alpha1GenericProfile;
|
|
1043
1047
|
/** Output only. The issued certificate for this `CertificateProvisioningProcess` in PEM format. */
|
|
1044
1048
|
issuedCertificate?: string;
|
|
1045
1049
|
/** 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. */
|
|
@@ -1073,6 +1077,14 @@ declare namespace gapi.client {
|
|
|
1073
1077
|
/** Output only. The primary e-mail address of the user. */
|
|
1074
1078
|
userPrimaryEmail?: string;
|
|
1075
1079
|
}
|
|
1080
|
+
interface GoogleChromeManagementVersionsV1alpha1GenericCaConnection {
|
|
1081
|
+
/** Output only. A string that references the administrator-provided configuration for the certification authority service. This field can be missing if no configuration was given. */
|
|
1082
|
+
caConnectionAdapterConfigReference?: string;
|
|
1083
|
+
}
|
|
1084
|
+
interface GoogleChromeManagementVersionsV1alpha1GenericProfile {
|
|
1085
|
+
/** Output only. A string that references the administrator-provided configuration for the certificate provisioning profile. This field can be missing if no configuration was given. */
|
|
1086
|
+
profileAdapterConfigReference?: string;
|
|
1087
|
+
}
|
|
1076
1088
|
interface GoogleChromeManagementVersionsV1alpha1SignDataMetadata {
|
|
1077
1089
|
/** Output only. Start time of the SignData operation. */
|
|
1078
1090
|
startTime?: string;
|
|
@@ -1100,6 +1112,10 @@ declare namespace gapi.client {
|
|
|
1100
1112
|
chromeOsUserSession?: GoogleChromeManagementVersionsV1ChromeOsUserSession;
|
|
1101
1113
|
/** Output only. A message describing why this `CertificateProvisioningProcess` failed. Presence of this field indicates that the `CertificateProvisioningProcess` has failed. */
|
|
1102
1114
|
failureMessage?: string;
|
|
1115
|
+
/** Output only. The CA connection is a generic CA connection. */
|
|
1116
|
+
genericCaConnection?: GoogleChromeManagementVersionsV1GenericCaConnection;
|
|
1117
|
+
/** Output only. The profile is a generic certificate provisioning profile. */
|
|
1118
|
+
genericProfile?: GoogleChromeManagementVersionsV1GenericProfile;
|
|
1103
1119
|
/** Output only. The issued certificate for this `CertificateProvisioningProcess` in PEM format. */
|
|
1104
1120
|
issuedCertificate?: string;
|
|
1105
1121
|
/** 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. */
|
|
@@ -1197,6 +1213,14 @@ declare namespace gapi.client {
|
|
|
1197
1213
|
/** Output only. Machine name of the device on which the profile exists. On platforms which do not report the machine name (currently iOS and Android) this is instead set to the browser's device_id - but note that this is a different device_id than the |affiliated_device_id|. */
|
|
1198
1214
|
machine?: string;
|
|
1199
1215
|
}
|
|
1216
|
+
interface GoogleChromeManagementVersionsV1GenericCaConnection {
|
|
1217
|
+
/** Output only. A string that references the administrator-provided configuration for the certification authority service. This field can be missing if no configuration was given. */
|
|
1218
|
+
caConnectionAdapterConfigReference?: string;
|
|
1219
|
+
}
|
|
1220
|
+
interface GoogleChromeManagementVersionsV1GenericProfile {
|
|
1221
|
+
/** Output only. A string that references the administrator-provided configuration for the certificate provisioning profile. This field can be missing if no configuration was given. */
|
|
1222
|
+
profileAdapterConfigReference?: string;
|
|
1223
|
+
}
|
|
1200
1224
|
interface GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse {
|
|
1201
1225
|
/** The list of profiles returned. */
|
|
1202
1226
|
chromeBrowserProfiles?: GoogleChromeManagementVersionsV1ChromeBrowserProfile[];
|