@googleapis/verifiedaccess 3.4.1 → 3.7.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.
- package/CHANGELOG.md +31 -0
- package/build/v2.d.ts +61 -44
- package/build/v2.js.map +1 -1
- package/package.json +1 -1
- package/v2.ts +61 -44
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/verifiedaccess-v3.6.0...verifiedaccess-v3.7.0) (2025-03-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **verifiedaccess:** update the API ([346824a](https://github.com/googleapis/google-api-nodejs-client/commit/346824aec3fe4a8c71f4b6c718605574f8db48f2))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **verifiedaccess:** update the API ([d068dcc](https://github.com/googleapis/google-api-nodejs-client/commit/d068dcc2179b028d75da364a8f2de94153b28255))
|
|
14
|
+
|
|
15
|
+
## [3.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/verifiedaccess-v3.5.0...verifiedaccess-v3.6.0) (2025-03-18)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **verifiedaccess:** update the API ([346824a](https://github.com/googleapis/google-api-nodejs-client/commit/346824aec3fe4a8c71f4b6c718605574f8db48f2))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* **verifiedaccess:** update the API ([d068dcc](https://github.com/googleapis/google-api-nodejs-client/commit/d068dcc2179b028d75da364a8f2de94153b28255))
|
|
26
|
+
|
|
27
|
+
## [3.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/verifiedaccess-v3.4.1...verifiedaccess-v3.5.0) (2025-03-18)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* **verifiedaccess:** update the API ([346824a](https://github.com/googleapis/google-api-nodejs-client/commit/346824aec3fe4a8c71f4b6c718605574f8db48f2))
|
|
33
|
+
|
|
3
34
|
## [3.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/verifiedaccess-v3.4.0...verifiedaccess-v3.4.1) (2025-02-04)
|
|
4
35
|
|
|
5
36
|
|
package/build/v2.d.ts
CHANGED
|
@@ -71,6 +71,15 @@ export declare namespace verifiedaccess_v2 {
|
|
|
71
71
|
challenge: Resource$Challenge;
|
|
72
72
|
constructor(options: GlobalOptions, google?: GoogleConfigurable);
|
|
73
73
|
}
|
|
74
|
+
/**
|
|
75
|
+
* Antivirus information on a device.
|
|
76
|
+
*/
|
|
77
|
+
export interface Schema$Antivirus {
|
|
78
|
+
/**
|
|
79
|
+
* Output only. The state of the antivirus on the device. Introduced in Chrome M136.
|
|
80
|
+
*/
|
|
81
|
+
state?: string | null;
|
|
82
|
+
}
|
|
74
83
|
/**
|
|
75
84
|
* Result message for VerifiedAccess.GenerateChallenge.
|
|
76
85
|
*/
|
|
@@ -85,11 +94,11 @@ export declare namespace verifiedaccess_v2 {
|
|
|
85
94
|
*/
|
|
86
95
|
export interface Schema$CrowdStrikeAgent {
|
|
87
96
|
/**
|
|
88
|
-
* The Agent ID of the Crowdstrike agent.
|
|
97
|
+
* Output only. The Agent ID of the Crowdstrike agent.
|
|
89
98
|
*/
|
|
90
99
|
agentId?: string | null;
|
|
91
100
|
/**
|
|
92
|
-
* The Customer ID to which the agent belongs to.
|
|
101
|
+
* Output only. The Customer ID to which the agent belongs to.
|
|
93
102
|
*/
|
|
94
103
|
customerId?: string | null;
|
|
95
104
|
}
|
|
@@ -98,47 +107,51 @@ export declare namespace verifiedaccess_v2 {
|
|
|
98
107
|
*/
|
|
99
108
|
export interface Schema$DeviceSignals {
|
|
100
109
|
/**
|
|
101
|
-
* Value of the AllowScreenLock policy on the device. See https://chromeenterprise.google/policies/?policy=AllowScreenLock for more details. Available on ChromeOS only.
|
|
110
|
+
* Output only. Value of the AllowScreenLock policy on the device. See https://chromeenterprise.google/policies/?policy=AllowScreenLock for more details. Available on ChromeOS only.
|
|
102
111
|
*/
|
|
103
112
|
allowScreenLock?: boolean | null;
|
|
104
113
|
/**
|
|
105
|
-
*
|
|
114
|
+
* Output only. Information about Antivirus software on the device. Available on Windows only.
|
|
115
|
+
*/
|
|
116
|
+
antivirus?: Schema$Antivirus;
|
|
117
|
+
/**
|
|
118
|
+
* Output only. Current version of the Chrome browser which generated this set of signals. Example value: "107.0.5286.0".
|
|
106
119
|
*/
|
|
107
120
|
browserVersion?: string | null;
|
|
108
121
|
/**
|
|
109
|
-
* Whether Chrome's built-in DNS client is used. The OS DNS client is otherwise used. This value may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#BuiltInDnsClientEnabled.
|
|
122
|
+
* Output only. Whether Chrome's built-in DNS client is used. The OS DNS client is otherwise used. This value may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#BuiltInDnsClientEnabled.
|
|
110
123
|
*/
|
|
111
124
|
builtInDnsClientEnabled?: boolean | null;
|
|
112
125
|
/**
|
|
113
|
-
* Whether access to the Chrome Remote Desktop application is blocked via a policy.
|
|
126
|
+
* Output only. Whether access to the Chrome Remote Desktop application is blocked via a policy.
|
|
114
127
|
*/
|
|
115
128
|
chromeRemoteDesktopAppBlocked?: boolean | null;
|
|
116
129
|
/**
|
|
117
|
-
* Crowdstrike agent properties installed on the device, if any. Available on Windows and MacOS only.
|
|
130
|
+
* Output only. Crowdstrike agent properties installed on the device, if any. Available on Windows and MacOS only.
|
|
118
131
|
*/
|
|
119
132
|
crowdStrikeAgent?: Schema$CrowdStrikeAgent;
|
|
120
133
|
/**
|
|
121
|
-
* Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the device. When the sets of device and profile affiliation IDs overlap, it means that the organizations managing the device and user are affiliated. To learn more about user affiliation, visit https://support.google.com/chrome/a/answer/12801245?ref_topic=9027936.
|
|
134
|
+
* Output only. Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the device. When the sets of device and profile affiliation IDs overlap, it means that the organizations managing the device and user are affiliated. To learn more about user affiliation, visit https://support.google.com/chrome/a/answer/12801245?ref_topic=9027936.
|
|
122
135
|
*/
|
|
123
136
|
deviceAffiliationIds?: string[] | null;
|
|
124
137
|
/**
|
|
125
|
-
* Enrollment domain of the customer which is currently managing the device.
|
|
138
|
+
* Output only. Enrollment domain of the customer which is currently managing the device.
|
|
126
139
|
*/
|
|
127
140
|
deviceEnrollmentDomain?: string | null;
|
|
128
141
|
/**
|
|
129
|
-
* The name of the device's manufacturer.
|
|
142
|
+
* Output only. The name of the device's manufacturer.
|
|
130
143
|
*/
|
|
131
144
|
deviceManufacturer?: string | null;
|
|
132
145
|
/**
|
|
133
|
-
* The name of the device's model.
|
|
146
|
+
* Output only. The name of the device's model.
|
|
134
147
|
*/
|
|
135
148
|
deviceModel?: string | null;
|
|
136
149
|
/**
|
|
137
|
-
* The encryption state of the disk. On ChromeOS, the main disk is always ENCRYPTED.
|
|
150
|
+
* Output only. The encryption state of the disk. On ChromeOS, the main disk is always ENCRYPTED.
|
|
138
151
|
*/
|
|
139
152
|
diskEncryption?: string | null;
|
|
140
153
|
/**
|
|
141
|
-
* The display name of the device, as defined by the user.
|
|
154
|
+
* Output only. The display name of the device, as defined by the user.
|
|
142
155
|
*/
|
|
143
156
|
displayName?: string | null;
|
|
144
157
|
/**
|
|
@@ -146,63 +159,63 @@ export declare namespace verifiedaccess_v2 {
|
|
|
146
159
|
*/
|
|
147
160
|
hostname?: string | null;
|
|
148
161
|
/**
|
|
149
|
-
* International Mobile Equipment Identity (IMEI) of the device. Available on ChromeOS only.
|
|
162
|
+
* Output only. International Mobile Equipment Identity (IMEI) of the device. Available on ChromeOS only.
|
|
150
163
|
*/
|
|
151
164
|
imei?: string[] | null;
|
|
152
165
|
/**
|
|
153
|
-
* MAC addresses of the device.
|
|
166
|
+
* Output only. MAC addresses of the device.
|
|
154
167
|
*/
|
|
155
168
|
macAddresses?: string[] | null;
|
|
156
169
|
/**
|
|
157
|
-
* Mobile Equipment Identifier (MEID) of the device. Available on ChromeOS only.
|
|
170
|
+
* Output only. Mobile Equipment Identifier (MEID) of the device. Available on ChromeOS only.
|
|
158
171
|
*/
|
|
159
172
|
meid?: string[] | null;
|
|
160
173
|
/**
|
|
161
|
-
* The type of the Operating System currently running on the device.
|
|
174
|
+
* Output only. The type of the Operating System currently running on the device.
|
|
162
175
|
*/
|
|
163
176
|
operatingSystem?: string | null;
|
|
164
177
|
/**
|
|
165
|
-
* The state of the OS level firewall. On ChromeOS, the value will always be ENABLED on regular devices and UNKNOWN on devices in developer mode. Support for MacOS 15 (Sequoia) and later has been introduced in Chrome M131.
|
|
178
|
+
* Output only. The state of the OS level firewall. On ChromeOS, the value will always be ENABLED on regular devices and UNKNOWN on devices in developer mode. Support for MacOS 15 (Sequoia) and later has been introduced in Chrome M131.
|
|
166
179
|
*/
|
|
167
180
|
osFirewall?: string | null;
|
|
168
181
|
/**
|
|
169
|
-
* The current version of the Operating System. On Windows and linux, the value will also include the security patch information.
|
|
182
|
+
* Output only. The current version of the Operating System. On Windows and linux, the value will also include the security patch information.
|
|
170
183
|
*/
|
|
171
184
|
osVersion?: string | null;
|
|
172
185
|
/**
|
|
173
|
-
* Whether the Password Protection Warning feature is enabled or not. Password protection alerts users when they reuse their protected password on potentially suspicious sites. This setting is controlled by an enterprise policy: https://chromeenterprise.google/policies/#PasswordProtectionWarningTrigger. Note that the policy unset does not have the same effects as having the policy explicitly set to `PASSWORD_PROTECTION_OFF`.
|
|
186
|
+
* Output only. Whether the Password Protection Warning feature is enabled or not. Password protection alerts users when they reuse their protected password on potentially suspicious sites. This setting is controlled by an enterprise policy: https://chromeenterprise.google/policies/#PasswordProtectionWarningTrigger. Note that the policy unset does not have the same effects as having the policy explicitly set to `PASSWORD_PROTECTION_OFF`.
|
|
174
187
|
*/
|
|
175
188
|
passwordProtectionWarningTrigger?: string | null;
|
|
176
189
|
/**
|
|
177
|
-
* Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
|
|
190
|
+
* Output only. Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
|
|
178
191
|
*/
|
|
179
192
|
profileAffiliationIds?: string[] | null;
|
|
180
193
|
/**
|
|
181
|
-
* Enrollment domain of the customer which is currently managing the profile.
|
|
194
|
+
* Output only. Enrollment domain of the customer which is currently managing the profile.
|
|
182
195
|
*/
|
|
183
196
|
profileEnrollmentDomain?: string | null;
|
|
184
197
|
/**
|
|
185
|
-
* Whether Enterprise-grade (i.e. custom) unsafe URL scanning is enabled or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#EnterpriseRealTimeUrlCheckMode
|
|
198
|
+
* Output only. Whether Enterprise-grade (i.e. custom) unsafe URL scanning is enabled or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#EnterpriseRealTimeUrlCheckMode
|
|
186
199
|
*/
|
|
187
200
|
realtimeUrlCheckMode?: string | null;
|
|
188
201
|
/**
|
|
189
|
-
* Safe Browsing Protection Level. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SafeBrowsingProtectionLevel.
|
|
202
|
+
* Output only. Safe Browsing Protection Level. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SafeBrowsingProtectionLevel.
|
|
190
203
|
*/
|
|
191
204
|
safeBrowsingProtectionLevel?: string | null;
|
|
192
205
|
/**
|
|
193
|
-
* The state of the Screen Lock password protection. On ChromeOS, this value will always be ENABLED as there is not way to disable requiring a password or pin when unlocking the device.
|
|
206
|
+
* Output only. The state of the Screen Lock password protection. On ChromeOS, this value will always be ENABLED as there is not way to disable requiring a password or pin when unlocking the device.
|
|
194
207
|
*/
|
|
195
208
|
screenLockSecured?: string | null;
|
|
196
209
|
/**
|
|
197
|
-
* Whether the device's startup software has its Secure Boot feature enabled. Available on Windows only.
|
|
210
|
+
* Output only. Whether the device's startup software has its Secure Boot feature enabled. Available on Windows only.
|
|
198
211
|
*/
|
|
199
212
|
secureBootMode?: string | null;
|
|
200
213
|
/**
|
|
201
|
-
* The serial number of the device. On Windows, this represents the BIOS's serial number. Not available on most Linux distributions.
|
|
214
|
+
* Output only. The serial number of the device. On Windows, this represents the BIOS's serial number. Not available on most Linux distributions.
|
|
202
215
|
*/
|
|
203
216
|
serialNumber?: string | null;
|
|
204
217
|
/**
|
|
205
|
-
* Whether the Site Isolation (a.k.a Site Per Process) setting is enabled. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SitePerProcess
|
|
218
|
+
* Output only. Whether the Site Isolation (a.k.a Site Per Process) setting is enabled. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SitePerProcess
|
|
206
219
|
*/
|
|
207
220
|
siteIsolationEnabled?: boolean | null;
|
|
208
221
|
/**
|
|
@@ -210,19 +223,19 @@ export declare namespace verifiedaccess_v2 {
|
|
|
210
223
|
*/
|
|
211
224
|
systemDnsServers?: string[] | null;
|
|
212
225
|
/**
|
|
213
|
-
* Whether Chrome is blocking third-party software injection or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/?policy=ThirdPartyBlockingEnabled. Available on Windows only.
|
|
226
|
+
* Output only. Whether Chrome is blocking third-party software injection or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/?policy=ThirdPartyBlockingEnabled. Available on Windows only.
|
|
214
227
|
*/
|
|
215
228
|
thirdPartyBlockingEnabled?: boolean | null;
|
|
216
229
|
/**
|
|
217
|
-
* The trigger which generated this set of signals.
|
|
230
|
+
* Output only. The trigger which generated this set of signals.
|
|
218
231
|
*/
|
|
219
232
|
trigger?: string | null;
|
|
220
233
|
/**
|
|
221
|
-
* Windows domain that the current machine has joined. Available on Windows only.
|
|
234
|
+
* Output only. Windows domain that the current machine has joined. Available on Windows only.
|
|
222
235
|
*/
|
|
223
236
|
windowsMachineDomain?: string | null;
|
|
224
237
|
/**
|
|
225
|
-
* Windows domain for the current OS user. Available on Windows only.
|
|
238
|
+
* Output only. Windows domain for the current OS user. Available on Windows only.
|
|
226
239
|
*/
|
|
227
240
|
windowsUserDomain?: string | null;
|
|
228
241
|
}
|
|
@@ -249,51 +262,55 @@ export declare namespace verifiedaccess_v2 {
|
|
|
249
262
|
*/
|
|
250
263
|
export interface Schema$VerifyChallengeResponseResult {
|
|
251
264
|
/**
|
|
252
|
-
* Attested device ID (ADID).
|
|
265
|
+
* Output only. Attested device ID (ADID).
|
|
253
266
|
*/
|
|
254
267
|
attestedDeviceId?: string | null;
|
|
255
268
|
/**
|
|
256
|
-
* Unique customer id that this device belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
269
|
+
* Output only. Unique customer id that this device belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
257
270
|
*/
|
|
258
271
|
customerId?: string | null;
|
|
259
272
|
/**
|
|
260
|
-
* Device enrollment id for ChromeOS devices.
|
|
273
|
+
* Output only. Device enrollment id for ChromeOS devices.
|
|
261
274
|
*/
|
|
262
275
|
deviceEnrollmentId?: string | null;
|
|
263
276
|
/**
|
|
264
|
-
* Device permanent id is returned in this field (for the machine response only).
|
|
277
|
+
* Output only. Device permanent id is returned in this field (for the machine response only).
|
|
265
278
|
*/
|
|
266
279
|
devicePermanentId?: string | null;
|
|
267
280
|
/**
|
|
268
|
-
* Deprecated. Device signal in json string representation. Prefer using `device_signals` instead.
|
|
281
|
+
* Output only. Deprecated. Device signal in json string representation. Prefer using `device_signals` instead.
|
|
269
282
|
*/
|
|
270
283
|
deviceSignal?: string | null;
|
|
271
284
|
/**
|
|
272
|
-
* Device signals.
|
|
285
|
+
* Output only. Device signals.
|
|
273
286
|
*/
|
|
274
287
|
deviceSignals?: Schema$DeviceSignals;
|
|
275
288
|
/**
|
|
276
|
-
* Device attested key trust level.
|
|
289
|
+
* Output only. Device attested key trust level.
|
|
277
290
|
*/
|
|
278
291
|
keyTrustLevel?: string | null;
|
|
279
292
|
/**
|
|
280
|
-
* Unique customer id that this profile belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
293
|
+
* Output only. Unique customer id that this profile belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
281
294
|
*/
|
|
282
295
|
profileCustomerId?: string | null;
|
|
283
296
|
/**
|
|
284
|
-
* Profile attested key trust level.
|
|
297
|
+
* Output only. Profile attested key trust level.
|
|
285
298
|
*/
|
|
286
299
|
profileKeyTrustLevel?: string | null;
|
|
287
300
|
/**
|
|
288
|
-
*
|
|
301
|
+
* Output only. The unique server-side ID of a profile on the device.
|
|
302
|
+
*/
|
|
303
|
+
profilePermanentId?: string | null;
|
|
304
|
+
/**
|
|
305
|
+
* Output only. Certificate Signing Request (in the SPKAC format, base64 encoded) is returned in this field. This field will be set only if device has included CSR in its challenge response. (the option to include CSR is now available for both user and machine responses)
|
|
289
306
|
*/
|
|
290
307
|
signedPublicKeyAndChallenge?: string | null;
|
|
291
308
|
/**
|
|
292
|
-
* Virtual device id of the device. The definition of virtual device id is platform-specific.
|
|
309
|
+
* Output only. Virtual device id of the device. The definition of virtual device id is platform-specific.
|
|
293
310
|
*/
|
|
294
311
|
virtualDeviceId?: string | null;
|
|
295
312
|
/**
|
|
296
|
-
* The ID of a profile on the device.
|
|
313
|
+
* Output only. The client-provided ID of a profile on the device.
|
|
297
314
|
*/
|
|
298
315
|
virtualProfileId?: string | null;
|
|
299
316
|
}
|
package/build/v2.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v2.js","sourceRoot":"","sources":["../v2.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,gDAAgD;AAChD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAEjC,uDAAuD;AACvD,sDAAsD;AACtD,0DAA0D;AAC1D,oDAAoD;AACpD,4CAA4C;AAE5C,yDAe2B;AAG3B,IAAiB,iBAAiB,
|
|
1
|
+
{"version":3,"file":"v2.js","sourceRoot":"","sources":["../v2.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/v2.ts
CHANGED
|
@@ -124,6 +124,15 @@ export namespace verifiedaccess_v2 {
|
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
+
/**
|
|
128
|
+
* Antivirus information on a device.
|
|
129
|
+
*/
|
|
130
|
+
export interface Schema$Antivirus {
|
|
131
|
+
/**
|
|
132
|
+
* Output only. The state of the antivirus on the device. Introduced in Chrome M136.
|
|
133
|
+
*/
|
|
134
|
+
state?: string | null;
|
|
135
|
+
}
|
|
127
136
|
/**
|
|
128
137
|
* Result message for VerifiedAccess.GenerateChallenge.
|
|
129
138
|
*/
|
|
@@ -138,11 +147,11 @@ export namespace verifiedaccess_v2 {
|
|
|
138
147
|
*/
|
|
139
148
|
export interface Schema$CrowdStrikeAgent {
|
|
140
149
|
/**
|
|
141
|
-
* The Agent ID of the Crowdstrike agent.
|
|
150
|
+
* Output only. The Agent ID of the Crowdstrike agent.
|
|
142
151
|
*/
|
|
143
152
|
agentId?: string | null;
|
|
144
153
|
/**
|
|
145
|
-
* The Customer ID to which the agent belongs to.
|
|
154
|
+
* Output only. The Customer ID to which the agent belongs to.
|
|
146
155
|
*/
|
|
147
156
|
customerId?: string | null;
|
|
148
157
|
}
|
|
@@ -151,47 +160,51 @@ export namespace verifiedaccess_v2 {
|
|
|
151
160
|
*/
|
|
152
161
|
export interface Schema$DeviceSignals {
|
|
153
162
|
/**
|
|
154
|
-
* Value of the AllowScreenLock policy on the device. See https://chromeenterprise.google/policies/?policy=AllowScreenLock for more details. Available on ChromeOS only.
|
|
163
|
+
* Output only. Value of the AllowScreenLock policy on the device. See https://chromeenterprise.google/policies/?policy=AllowScreenLock for more details. Available on ChromeOS only.
|
|
155
164
|
*/
|
|
156
165
|
allowScreenLock?: boolean | null;
|
|
157
166
|
/**
|
|
158
|
-
*
|
|
167
|
+
* Output only. Information about Antivirus software on the device. Available on Windows only.
|
|
168
|
+
*/
|
|
169
|
+
antivirus?: Schema$Antivirus;
|
|
170
|
+
/**
|
|
171
|
+
* Output only. Current version of the Chrome browser which generated this set of signals. Example value: "107.0.5286.0".
|
|
159
172
|
*/
|
|
160
173
|
browserVersion?: string | null;
|
|
161
174
|
/**
|
|
162
|
-
* Whether Chrome's built-in DNS client is used. The OS DNS client is otherwise used. This value may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#BuiltInDnsClientEnabled.
|
|
175
|
+
* Output only. Whether Chrome's built-in DNS client is used. The OS DNS client is otherwise used. This value may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#BuiltInDnsClientEnabled.
|
|
163
176
|
*/
|
|
164
177
|
builtInDnsClientEnabled?: boolean | null;
|
|
165
178
|
/**
|
|
166
|
-
* Whether access to the Chrome Remote Desktop application is blocked via a policy.
|
|
179
|
+
* Output only. Whether access to the Chrome Remote Desktop application is blocked via a policy.
|
|
167
180
|
*/
|
|
168
181
|
chromeRemoteDesktopAppBlocked?: boolean | null;
|
|
169
182
|
/**
|
|
170
|
-
* Crowdstrike agent properties installed on the device, if any. Available on Windows and MacOS only.
|
|
183
|
+
* Output only. Crowdstrike agent properties installed on the device, if any. Available on Windows and MacOS only.
|
|
171
184
|
*/
|
|
172
185
|
crowdStrikeAgent?: Schema$CrowdStrikeAgent;
|
|
173
186
|
/**
|
|
174
|
-
* Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the device. When the sets of device and profile affiliation IDs overlap, it means that the organizations managing the device and user are affiliated. To learn more about user affiliation, visit https://support.google.com/chrome/a/answer/12801245?ref_topic=9027936.
|
|
187
|
+
* Output only. Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the device. When the sets of device and profile affiliation IDs overlap, it means that the organizations managing the device and user are affiliated. To learn more about user affiliation, visit https://support.google.com/chrome/a/answer/12801245?ref_topic=9027936.
|
|
175
188
|
*/
|
|
176
189
|
deviceAffiliationIds?: string[] | null;
|
|
177
190
|
/**
|
|
178
|
-
* Enrollment domain of the customer which is currently managing the device.
|
|
191
|
+
* Output only. Enrollment domain of the customer which is currently managing the device.
|
|
179
192
|
*/
|
|
180
193
|
deviceEnrollmentDomain?: string | null;
|
|
181
194
|
/**
|
|
182
|
-
* The name of the device's manufacturer.
|
|
195
|
+
* Output only. The name of the device's manufacturer.
|
|
183
196
|
*/
|
|
184
197
|
deviceManufacturer?: string | null;
|
|
185
198
|
/**
|
|
186
|
-
* The name of the device's model.
|
|
199
|
+
* Output only. The name of the device's model.
|
|
187
200
|
*/
|
|
188
201
|
deviceModel?: string | null;
|
|
189
202
|
/**
|
|
190
|
-
* The encryption state of the disk. On ChromeOS, the main disk is always ENCRYPTED.
|
|
203
|
+
* Output only. The encryption state of the disk. On ChromeOS, the main disk is always ENCRYPTED.
|
|
191
204
|
*/
|
|
192
205
|
diskEncryption?: string | null;
|
|
193
206
|
/**
|
|
194
|
-
* The display name of the device, as defined by the user.
|
|
207
|
+
* Output only. The display name of the device, as defined by the user.
|
|
195
208
|
*/
|
|
196
209
|
displayName?: string | null;
|
|
197
210
|
/**
|
|
@@ -199,63 +212,63 @@ export namespace verifiedaccess_v2 {
|
|
|
199
212
|
*/
|
|
200
213
|
hostname?: string | null;
|
|
201
214
|
/**
|
|
202
|
-
* International Mobile Equipment Identity (IMEI) of the device. Available on ChromeOS only.
|
|
215
|
+
* Output only. International Mobile Equipment Identity (IMEI) of the device. Available on ChromeOS only.
|
|
203
216
|
*/
|
|
204
217
|
imei?: string[] | null;
|
|
205
218
|
/**
|
|
206
|
-
* MAC addresses of the device.
|
|
219
|
+
* Output only. MAC addresses of the device.
|
|
207
220
|
*/
|
|
208
221
|
macAddresses?: string[] | null;
|
|
209
222
|
/**
|
|
210
|
-
* Mobile Equipment Identifier (MEID) of the device. Available on ChromeOS only.
|
|
223
|
+
* Output only. Mobile Equipment Identifier (MEID) of the device. Available on ChromeOS only.
|
|
211
224
|
*/
|
|
212
225
|
meid?: string[] | null;
|
|
213
226
|
/**
|
|
214
|
-
* The type of the Operating System currently running on the device.
|
|
227
|
+
* Output only. The type of the Operating System currently running on the device.
|
|
215
228
|
*/
|
|
216
229
|
operatingSystem?: string | null;
|
|
217
230
|
/**
|
|
218
|
-
* The state of the OS level firewall. On ChromeOS, the value will always be ENABLED on regular devices and UNKNOWN on devices in developer mode. Support for MacOS 15 (Sequoia) and later has been introduced in Chrome M131.
|
|
231
|
+
* Output only. The state of the OS level firewall. On ChromeOS, the value will always be ENABLED on regular devices and UNKNOWN on devices in developer mode. Support for MacOS 15 (Sequoia) and later has been introduced in Chrome M131.
|
|
219
232
|
*/
|
|
220
233
|
osFirewall?: string | null;
|
|
221
234
|
/**
|
|
222
|
-
* The current version of the Operating System. On Windows and linux, the value will also include the security patch information.
|
|
235
|
+
* Output only. The current version of the Operating System. On Windows and linux, the value will also include the security patch information.
|
|
223
236
|
*/
|
|
224
237
|
osVersion?: string | null;
|
|
225
238
|
/**
|
|
226
|
-
* Whether the Password Protection Warning feature is enabled or not. Password protection alerts users when they reuse their protected password on potentially suspicious sites. This setting is controlled by an enterprise policy: https://chromeenterprise.google/policies/#PasswordProtectionWarningTrigger. Note that the policy unset does not have the same effects as having the policy explicitly set to `PASSWORD_PROTECTION_OFF`.
|
|
239
|
+
* Output only. Whether the Password Protection Warning feature is enabled or not. Password protection alerts users when they reuse their protected password on potentially suspicious sites. This setting is controlled by an enterprise policy: https://chromeenterprise.google/policies/#PasswordProtectionWarningTrigger. Note that the policy unset does not have the same effects as having the policy explicitly set to `PASSWORD_PROTECTION_OFF`.
|
|
227
240
|
*/
|
|
228
241
|
passwordProtectionWarningTrigger?: string | null;
|
|
229
242
|
/**
|
|
230
|
-
* Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
|
|
243
|
+
* Output only. Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
|
|
231
244
|
*/
|
|
232
245
|
profileAffiliationIds?: string[] | null;
|
|
233
246
|
/**
|
|
234
|
-
* Enrollment domain of the customer which is currently managing the profile.
|
|
247
|
+
* Output only. Enrollment domain of the customer which is currently managing the profile.
|
|
235
248
|
*/
|
|
236
249
|
profileEnrollmentDomain?: string | null;
|
|
237
250
|
/**
|
|
238
|
-
* Whether Enterprise-grade (i.e. custom) unsafe URL scanning is enabled or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#EnterpriseRealTimeUrlCheckMode
|
|
251
|
+
* Output only. Whether Enterprise-grade (i.e. custom) unsafe URL scanning is enabled or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#EnterpriseRealTimeUrlCheckMode
|
|
239
252
|
*/
|
|
240
253
|
realtimeUrlCheckMode?: string | null;
|
|
241
254
|
/**
|
|
242
|
-
* Safe Browsing Protection Level. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SafeBrowsingProtectionLevel.
|
|
255
|
+
* Output only. Safe Browsing Protection Level. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SafeBrowsingProtectionLevel.
|
|
243
256
|
*/
|
|
244
257
|
safeBrowsingProtectionLevel?: string | null;
|
|
245
258
|
/**
|
|
246
|
-
* The state of the Screen Lock password protection. On ChromeOS, this value will always be ENABLED as there is not way to disable requiring a password or pin when unlocking the device.
|
|
259
|
+
* Output only. The state of the Screen Lock password protection. On ChromeOS, this value will always be ENABLED as there is not way to disable requiring a password or pin when unlocking the device.
|
|
247
260
|
*/
|
|
248
261
|
screenLockSecured?: string | null;
|
|
249
262
|
/**
|
|
250
|
-
* Whether the device's startup software has its Secure Boot feature enabled. Available on Windows only.
|
|
263
|
+
* Output only. Whether the device's startup software has its Secure Boot feature enabled. Available on Windows only.
|
|
251
264
|
*/
|
|
252
265
|
secureBootMode?: string | null;
|
|
253
266
|
/**
|
|
254
|
-
* The serial number of the device. On Windows, this represents the BIOS's serial number. Not available on most Linux distributions.
|
|
267
|
+
* Output only. The serial number of the device. On Windows, this represents the BIOS's serial number. Not available on most Linux distributions.
|
|
255
268
|
*/
|
|
256
269
|
serialNumber?: string | null;
|
|
257
270
|
/**
|
|
258
|
-
* Whether the Site Isolation (a.k.a Site Per Process) setting is enabled. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SitePerProcess
|
|
271
|
+
* Output only. Whether the Site Isolation (a.k.a Site Per Process) setting is enabled. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SitePerProcess
|
|
259
272
|
*/
|
|
260
273
|
siteIsolationEnabled?: boolean | null;
|
|
261
274
|
/**
|
|
@@ -263,19 +276,19 @@ export namespace verifiedaccess_v2 {
|
|
|
263
276
|
*/
|
|
264
277
|
systemDnsServers?: string[] | null;
|
|
265
278
|
/**
|
|
266
|
-
* Whether Chrome is blocking third-party software injection or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/?policy=ThirdPartyBlockingEnabled. Available on Windows only.
|
|
279
|
+
* Output only. Whether Chrome is blocking third-party software injection or not. This setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/?policy=ThirdPartyBlockingEnabled. Available on Windows only.
|
|
267
280
|
*/
|
|
268
281
|
thirdPartyBlockingEnabled?: boolean | null;
|
|
269
282
|
/**
|
|
270
|
-
* The trigger which generated this set of signals.
|
|
283
|
+
* Output only. The trigger which generated this set of signals.
|
|
271
284
|
*/
|
|
272
285
|
trigger?: string | null;
|
|
273
286
|
/**
|
|
274
|
-
* Windows domain that the current machine has joined. Available on Windows only.
|
|
287
|
+
* Output only. Windows domain that the current machine has joined. Available on Windows only.
|
|
275
288
|
*/
|
|
276
289
|
windowsMachineDomain?: string | null;
|
|
277
290
|
/**
|
|
278
|
-
* Windows domain for the current OS user. Available on Windows only.
|
|
291
|
+
* Output only. Windows domain for the current OS user. Available on Windows only.
|
|
279
292
|
*/
|
|
280
293
|
windowsUserDomain?: string | null;
|
|
281
294
|
}
|
|
@@ -301,51 +314,55 @@ export namespace verifiedaccess_v2 {
|
|
|
301
314
|
*/
|
|
302
315
|
export interface Schema$VerifyChallengeResponseResult {
|
|
303
316
|
/**
|
|
304
|
-
* Attested device ID (ADID).
|
|
317
|
+
* Output only. Attested device ID (ADID).
|
|
305
318
|
*/
|
|
306
319
|
attestedDeviceId?: string | null;
|
|
307
320
|
/**
|
|
308
|
-
* Unique customer id that this device belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
321
|
+
* Output only. Unique customer id that this device belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
309
322
|
*/
|
|
310
323
|
customerId?: string | null;
|
|
311
324
|
/**
|
|
312
|
-
* Device enrollment id for ChromeOS devices.
|
|
325
|
+
* Output only. Device enrollment id for ChromeOS devices.
|
|
313
326
|
*/
|
|
314
327
|
deviceEnrollmentId?: string | null;
|
|
315
328
|
/**
|
|
316
|
-
* Device permanent id is returned in this field (for the machine response only).
|
|
329
|
+
* Output only. Device permanent id is returned in this field (for the machine response only).
|
|
317
330
|
*/
|
|
318
331
|
devicePermanentId?: string | null;
|
|
319
332
|
/**
|
|
320
|
-
* Deprecated. Device signal in json string representation. Prefer using `device_signals` instead.
|
|
333
|
+
* Output only. Deprecated. Device signal in json string representation. Prefer using `device_signals` instead.
|
|
321
334
|
*/
|
|
322
335
|
deviceSignal?: string | null;
|
|
323
336
|
/**
|
|
324
|
-
* Device signals.
|
|
337
|
+
* Output only. Device signals.
|
|
325
338
|
*/
|
|
326
339
|
deviceSignals?: Schema$DeviceSignals;
|
|
327
340
|
/**
|
|
328
|
-
* Device attested key trust level.
|
|
341
|
+
* Output only. Device attested key trust level.
|
|
329
342
|
*/
|
|
330
343
|
keyTrustLevel?: string | null;
|
|
331
344
|
/**
|
|
332
|
-
* Unique customer id that this profile belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
345
|
+
* Output only. Unique customer id that this profile belongs to, as defined by the Google Admin SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-customers
|
|
333
346
|
*/
|
|
334
347
|
profileCustomerId?: string | null;
|
|
335
348
|
/**
|
|
336
|
-
* Profile attested key trust level.
|
|
349
|
+
* Output only. Profile attested key trust level.
|
|
337
350
|
*/
|
|
338
351
|
profileKeyTrustLevel?: string | null;
|
|
339
352
|
/**
|
|
340
|
-
*
|
|
353
|
+
* Output only. The unique server-side ID of a profile on the device.
|
|
354
|
+
*/
|
|
355
|
+
profilePermanentId?: string | null;
|
|
356
|
+
/**
|
|
357
|
+
* Output only. Certificate Signing Request (in the SPKAC format, base64 encoded) is returned in this field. This field will be set only if device has included CSR in its challenge response. (the option to include CSR is now available for both user and machine responses)
|
|
341
358
|
*/
|
|
342
359
|
signedPublicKeyAndChallenge?: string | null;
|
|
343
360
|
/**
|
|
344
|
-
* Virtual device id of the device. The definition of virtual device id is platform-specific.
|
|
361
|
+
* Output only. Virtual device id of the device. The definition of virtual device id is platform-specific.
|
|
345
362
|
*/
|
|
346
363
|
virtualDeviceId?: string | null;
|
|
347
364
|
/**
|
|
348
|
-
* The ID of a profile on the device.
|
|
365
|
+
* Output only. The client-provided ID of a profile on the device.
|
|
349
366
|
*/
|
|
350
367
|
virtualProfileId?: string | null;
|
|
351
368
|
}
|