@googleapis/verifiedaccess 1.0.0 → 2.0.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 CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/verifiedaccess-v1.0.0...verifiedaccess-v2.0.0) (2023-05-02)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * **verifiedaccess:** This release has breaking changes.
9
+
10
+ ### Features
11
+
12
+ * **verifiedaccess:** update the API ([aaafb85](https://github.com/googleapis/google-api-nodejs-client/commit/aaafb85ded6c9ed7eb5e5fd6c9774118a2d6daf1))
13
+
3
14
  ## [1.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/verifiedaccess-v0.3.4...verifiedaccess-v1.0.0) (2022-10-28)
4
15
 
5
16
 
package/build/v2.d.ts CHANGED
@@ -75,15 +75,149 @@ export declare namespace verifiedaccess_v2 {
75
75
  * Result message for VerifiedAccess.GenerateChallenge.
76
76
  */
77
77
  export interface Schema$Challenge {
78
- /**
79
- * Challenge generated with the old signing key, the bytes representation of SignedData (this will only be present during key rotation).
80
- */
81
- alternativeChallenge?: string | null;
82
78
  /**
83
79
  * Generated challenge, the bytes representation of SignedData.
84
80
  */
85
81
  challenge?: string | null;
86
82
  }
83
+ /**
84
+ * Properties of the CrowdStrike agent installed on a device.
85
+ */
86
+ export interface Schema$CrowdStrikeAgent {
87
+ /**
88
+ * The Agent ID of the Crowdstrike agent.
89
+ */
90
+ agentId?: string | null;
91
+ /**
92
+ * The Customer ID to which the agent belongs to.
93
+ */
94
+ customerId?: string | null;
95
+ }
96
+ /**
97
+ * The device signals as reported by Chrome.
98
+ */
99
+ export interface Schema$DeviceSignals {
100
+ /**
101
+ * Value of the AllowScreenLock policy on the device. See https://chromeenterprise.google/policies/?policy=AllowScreenLock for more details.
102
+ */
103
+ allowScreenLock?: boolean | null;
104
+ /**
105
+ * Current version of the Chrome browser which generated this set of signals. Example value: "107.0.5286.0".
106
+ */
107
+ browserVersion?: string | null;
108
+ /**
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.
110
+ */
111
+ builtInDnsClientEnabled?: boolean | null;
112
+ /**
113
+ * Whether access to the Chrome Remote Desktop application is blocked via a policy.
114
+ */
115
+ chromeRemoteDesktopAppBlocked?: boolean | null;
116
+ /**
117
+ * Crowdstrike agent properties installed on the device, if any.
118
+ */
119
+ crowdStrikeAgent?: Schema$CrowdStrikeAgent;
120
+ /**
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.
122
+ */
123
+ deviceAffiliationIds?: string[] | null;
124
+ /**
125
+ * Enrollment domain of the customer which is currently managing the device.
126
+ */
127
+ deviceEnrollmentDomain?: string | null;
128
+ /**
129
+ * The name of the device's manufacturer.
130
+ */
131
+ deviceManufacturer?: string | null;
132
+ /**
133
+ * The name of the device's model.
134
+ */
135
+ deviceModel?: string | null;
136
+ /**
137
+ * The encryption state of the disk. On ChromeOS, the main disk is always ENCRYPTED.
138
+ */
139
+ diskEncryption?: string | null;
140
+ /**
141
+ * The display name of the device, as defined by the user.
142
+ */
143
+ displayName?: string | null;
144
+ /**
145
+ * Hostname of the device.
146
+ */
147
+ hostname?: string | null;
148
+ /**
149
+ * International Mobile Equipment Identity (IMEI) of the device.
150
+ */
151
+ imei?: string[] | null;
152
+ /**
153
+ * MAC addresses of the device.
154
+ */
155
+ macAddresses?: string[] | null;
156
+ /**
157
+ * Mobile Equipment Identifier (MEID) of the device.
158
+ */
159
+ meid?: string[] | null;
160
+ /**
161
+ * The type of the Operating System currently running on the device.
162
+ */
163
+ operatingSystem?: string | null;
164
+ /**
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.
166
+ */
167
+ osFirewall?: string | null;
168
+ /**
169
+ * The current version of the Operating System. On Windows and linux, the value will also include the security patch information.
170
+ */
171
+ osVersion?: string | null;
172
+ /**
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`.
174
+ */
175
+ passwordProtectionWarningTrigger?: string | null;
176
+ /**
177
+ * Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
178
+ */
179
+ profileAffiliationIds?: string[] | null;
180
+ /**
181
+ * 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
182
+ */
183
+ realtimeUrlCheckMode?: string | null;
184
+ /**
185
+ * Safe Browsing Protection Level. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SafeBrowsingProtectionLevel.
186
+ */
187
+ safeBrowsingProtectionLevel?: string | null;
188
+ /**
189
+ * 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.
190
+ */
191
+ screenLockSecured?: string | null;
192
+ /**
193
+ * Whether the device's startup software has its Secure Boot feature enabled.
194
+ */
195
+ secureBootMode?: string | null;
196
+ /**
197
+ * The serial number of the device. On Windows, this represents the BIOS's serial number.
198
+ */
199
+ serialNumber?: string | null;
200
+ /**
201
+ * 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
202
+ */
203
+ siteIsolationEnabled?: boolean | null;
204
+ /**
205
+ * List of the addesses of all OS level DNS servers configured in the device's network settings.
206
+ */
207
+ systemDnsServers?: string[] | null;
208
+ /**
209
+ * 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
210
+ */
211
+ thirdPartyBlockingEnabled?: boolean | null;
212
+ /**
213
+ * Windows domain that the current machine has joined.
214
+ */
215
+ windowsMachineDomain?: string | null;
216
+ /**
217
+ * Windows domain for the current OS user.
218
+ */
219
+ windowsUserDomain?: string | null;
220
+ }
87
221
  /**
88
222
  * A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
89
223
  */
@@ -115,9 +249,13 @@ export declare namespace verifiedaccess_v2 {
115
249
  */
116
250
  devicePermanentId?: string | null;
117
251
  /**
118
- * Device signal in json string representation.
252
+ * Deprecated. Device signal in json string representation. Prefer using `device_signals` instead.
119
253
  */
120
254
  deviceSignal?: string | null;
255
+ /**
256
+ * Device signals.
257
+ */
258
+ deviceSignals?: Schema$DeviceSignals;
121
259
  /**
122
260
  * Device attested key trust level.
123
261
  */
@@ -171,7 +309,6 @@ export declare namespace verifiedaccess_v2 {
171
309
  *
172
310
  * // Example response
173
311
  * // {
174
- * // "alternativeChallenge": "my_alternativeChallenge",
175
312
  * // "challenge": "my_challenge"
176
313
  * // }
177
314
  * }
@@ -237,6 +374,7 @@ export declare namespace verifiedaccess_v2 {
237
374
  * // "customerId": "my_customerId",
238
375
  * // "devicePermanentId": "my_devicePermanentId",
239
376
  * // "deviceSignal": "my_deviceSignal",
377
+ * // "deviceSignals": {},
240
378
  * // "keyTrustLevel": "my_keyTrustLevel",
241
379
  * // "signedPublicKeyAndChallenge": "my_signedPublicKeyAndChallenge",
242
380
  * // "virtualDeviceId": "my_virtualDeviceId"
package/build/v2.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"v2.js","sourceRoot":"","sources":["../v2.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"v2.js","sourceRoot":"","sources":["../v2.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/verifiedaccess",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "verifiedaccess",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -38,6 +38,6 @@
38
38
  "ts-loader": "^9.0.0",
39
39
  "typescript": "~4.8.4",
40
40
  "webpack": "^5.0.0",
41
- "webpack-cli": "^4.0.0"
41
+ "webpack-cli": "^5.0.0"
42
42
  }
43
43
  }
package/v2.ts CHANGED
@@ -128,15 +128,149 @@ export namespace verifiedaccess_v2 {
128
128
  * Result message for VerifiedAccess.GenerateChallenge.
129
129
  */
130
130
  export interface Schema$Challenge {
131
- /**
132
- * Challenge generated with the old signing key, the bytes representation of SignedData (this will only be present during key rotation).
133
- */
134
- alternativeChallenge?: string | null;
135
131
  /**
136
132
  * Generated challenge, the bytes representation of SignedData.
137
133
  */
138
134
  challenge?: string | null;
139
135
  }
136
+ /**
137
+ * Properties of the CrowdStrike agent installed on a device.
138
+ */
139
+ export interface Schema$CrowdStrikeAgent {
140
+ /**
141
+ * The Agent ID of the Crowdstrike agent.
142
+ */
143
+ agentId?: string | null;
144
+ /**
145
+ * The Customer ID to which the agent belongs to.
146
+ */
147
+ customerId?: string | null;
148
+ }
149
+ /**
150
+ * The device signals as reported by Chrome.
151
+ */
152
+ export interface Schema$DeviceSignals {
153
+ /**
154
+ * Value of the AllowScreenLock policy on the device. See https://chromeenterprise.google/policies/?policy=AllowScreenLock for more details.
155
+ */
156
+ allowScreenLock?: boolean | null;
157
+ /**
158
+ * Current version of the Chrome browser which generated this set of signals. Example value: "107.0.5286.0".
159
+ */
160
+ browserVersion?: string | null;
161
+ /**
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.
163
+ */
164
+ builtInDnsClientEnabled?: boolean | null;
165
+ /**
166
+ * Whether access to the Chrome Remote Desktop application is blocked via a policy.
167
+ */
168
+ chromeRemoteDesktopAppBlocked?: boolean | null;
169
+ /**
170
+ * Crowdstrike agent properties installed on the device, if any.
171
+ */
172
+ crowdStrikeAgent?: Schema$CrowdStrikeAgent;
173
+ /**
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.
175
+ */
176
+ deviceAffiliationIds?: string[] | null;
177
+ /**
178
+ * Enrollment domain of the customer which is currently managing the device.
179
+ */
180
+ deviceEnrollmentDomain?: string | null;
181
+ /**
182
+ * The name of the device's manufacturer.
183
+ */
184
+ deviceManufacturer?: string | null;
185
+ /**
186
+ * The name of the device's model.
187
+ */
188
+ deviceModel?: string | null;
189
+ /**
190
+ * The encryption state of the disk. On ChromeOS, the main disk is always ENCRYPTED.
191
+ */
192
+ diskEncryption?: string | null;
193
+ /**
194
+ * The display name of the device, as defined by the user.
195
+ */
196
+ displayName?: string | null;
197
+ /**
198
+ * Hostname of the device.
199
+ */
200
+ hostname?: string | null;
201
+ /**
202
+ * International Mobile Equipment Identity (IMEI) of the device.
203
+ */
204
+ imei?: string[] | null;
205
+ /**
206
+ * MAC addresses of the device.
207
+ */
208
+ macAddresses?: string[] | null;
209
+ /**
210
+ * Mobile Equipment Identifier (MEID) of the device.
211
+ */
212
+ meid?: string[] | null;
213
+ /**
214
+ * The type of the Operating System currently running on the device.
215
+ */
216
+ operatingSystem?: string | null;
217
+ /**
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.
219
+ */
220
+ osFirewall?: string | null;
221
+ /**
222
+ * The current version of the Operating System. On Windows and linux, the value will also include the security patch information.
223
+ */
224
+ osVersion?: string | null;
225
+ /**
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`.
227
+ */
228
+ passwordProtectionWarningTrigger?: string | null;
229
+ /**
230
+ * Affiliation IDs of the organizations that are affiliated with the organization that is currently managing the Chrome Profile’s user or ChromeOS user.
231
+ */
232
+ profileAffiliationIds?: string[] | null;
233
+ /**
234
+ * 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
235
+ */
236
+ realtimeUrlCheckMode?: string | null;
237
+ /**
238
+ * Safe Browsing Protection Level. That setting may be controlled by an enterprise policy: https://chromeenterprise.google/policies/#SafeBrowsingProtectionLevel.
239
+ */
240
+ safeBrowsingProtectionLevel?: string | null;
241
+ /**
242
+ * 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.
243
+ */
244
+ screenLockSecured?: string | null;
245
+ /**
246
+ * Whether the device's startup software has its Secure Boot feature enabled.
247
+ */
248
+ secureBootMode?: string | null;
249
+ /**
250
+ * The serial number of the device. On Windows, this represents the BIOS's serial number.
251
+ */
252
+ serialNumber?: string | null;
253
+ /**
254
+ * 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
255
+ */
256
+ siteIsolationEnabled?: boolean | null;
257
+ /**
258
+ * List of the addesses of all OS level DNS servers configured in the device's network settings.
259
+ */
260
+ systemDnsServers?: string[] | null;
261
+ /**
262
+ * 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
263
+ */
264
+ thirdPartyBlockingEnabled?: boolean | null;
265
+ /**
266
+ * Windows domain that the current machine has joined.
267
+ */
268
+ windowsMachineDomain?: string | null;
269
+ /**
270
+ * Windows domain for the current OS user.
271
+ */
272
+ windowsUserDomain?: string | null;
273
+ }
140
274
  /**
141
275
  * A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
142
276
  */
@@ -167,9 +301,13 @@ export namespace verifiedaccess_v2 {
167
301
  */
168
302
  devicePermanentId?: string | null;
169
303
  /**
170
- * Device signal in json string representation.
304
+ * Deprecated. Device signal in json string representation. Prefer using `device_signals` instead.
171
305
  */
172
306
  deviceSignal?: string | null;
307
+ /**
308
+ * Device signals.
309
+ */
310
+ deviceSignals?: Schema$DeviceSignals;
173
311
  /**
174
312
  * Device attested key trust level.
175
313
  */
@@ -227,7 +365,6 @@ export namespace verifiedaccess_v2 {
227
365
  *
228
366
  * // Example response
229
367
  * // {
230
- * // "alternativeChallenge": "my_alternativeChallenge",
231
368
  * // "challenge": "my_challenge"
232
369
  * // }
233
370
  * }
@@ -367,6 +504,7 @@ export namespace verifiedaccess_v2 {
367
504
  * // "customerId": "my_customerId",
368
505
  * // "devicePermanentId": "my_devicePermanentId",
369
506
  * // "deviceSignal": "my_deviceSignal",
507
+ * // "deviceSignals": {},
370
508
  * // "keyTrustLevel": "my_keyTrustLevel",
371
509
  * // "signedPublicKeyAndChallenge": "my_signedPublicKeyAndChallenge",
372
510
  * // "virtualDeviceId": "my_virtualDeviceId"