@maxim_mazurok/gapi.client.cloudidentity-v1 0.0.20221101 → 0.0.20230102
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 +8 -6
- package/package.json +1 -1
- package/tests.ts +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://cloudidentity.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230102
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -331,7 +331,7 @@ declare namespace gapi.client {
|
|
|
331
331
|
interface GoogleAppsCloudidentityDevicesV1ListEndpointAppsMetadata {
|
|
332
332
|
}
|
|
333
333
|
interface GoogleAppsCloudidentityDevicesV1LookupSelfDeviceUsersResponse {
|
|
334
|
-
/** The
|
|
334
|
+
/** The customer resource name that may be passed back to other Devices API methods such as List, Get, etc. */
|
|
335
335
|
customer?: string;
|
|
336
336
|
/**
|
|
337
337
|
* [Resource names](https://cloud.google.com/apis/design/resource_names) of the DeviceUsers in the format: `devices/{device}/deviceUsers/{user_resource}`, where device is the unique ID
|
|
@@ -406,7 +406,8 @@ declare namespace gapi.client {
|
|
|
406
406
|
name?: string;
|
|
407
407
|
/**
|
|
408
408
|
* Required. Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form
|
|
409
|
-
* `identitysources/{identity_source}` for external
|
|
409
|
+
* `identitysources/{identity_source}` for external [identity-mapped groups](https://support.google.com/a/answer/9039510) or `customers/{customer_id}` for Google Groups. The
|
|
410
|
+
* `customer_id` must begin with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://support.google.com/cloudidentity/answer/10070793)
|
|
410
411
|
*/
|
|
411
412
|
parent?: string;
|
|
412
413
|
/** Output only. The time when the `Group` was last updated. */
|
|
@@ -2346,7 +2347,8 @@ declare namespace gapi.client {
|
|
|
2346
2347
|
pageToken?: string;
|
|
2347
2348
|
/**
|
|
2348
2349
|
* Required. The parent resource under which to list all `Group` resources. Must be of the form `identitysources/{identity_source}` for external- identity-mapped groups or
|
|
2349
|
-
* `customers/{
|
|
2350
|
+
* `customers/{customer_id}` for Google Groups. The `customer_id` must begin with "C" (for example, 'C046psxkn'). [Find your customer ID.]
|
|
2351
|
+
* (https://support.google.com/cloudidentity/answer/10070793)
|
|
2350
2352
|
*/
|
|
2351
2353
|
parent?: string;
|
|
2352
2354
|
/** Returns response with indentations and line breaks. */
|
|
@@ -2484,8 +2486,8 @@ declare namespace gapi.client {
|
|
|
2484
2486
|
prettyPrint?: boolean;
|
|
2485
2487
|
/**
|
|
2486
2488
|
* Required. The search query. Must be specified in [Common Expression Language](https://opensource.google/projects/cel). May only contain equality operators on the parent and
|
|
2487
|
-
* inclusion operators on labels (e.g., `parent == 'customers/{
|
|
2488
|
-
* (for example, 'C046psxkn').
|
|
2489
|
+
* inclusion operators on labels (e.g., `parent == 'customers/{customer_id}' && 'cloudidentity.googleapis.com/groups.discussion_forum' in labels`). The `customer_id` must begin
|
|
2490
|
+
* with "C" (for example, 'C046psxkn'). [Find your customer ID.] (https://support.google.com/cloudidentity/answer/10070793)
|
|
2489
2491
|
*/
|
|
2490
2492
|
query?: string;
|
|
2491
2493
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230102
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|