@maxim_mazurok/gapi.client.cloudidentity-v1 0.1.20251007 → 0.1.20251027
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 +3 -3
- package/package.json +1 -1
- package/readme.md +2 -2
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: 20251027
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3291,7 +3291,7 @@ declare namespace gapi.client {
|
|
|
3291
3291
|
): Request<Operation>;
|
|
3292
3292
|
}
|
|
3293
3293
|
interface PoliciesResource {
|
|
3294
|
-
/** Get a
|
|
3294
|
+
/** Get a policy. */
|
|
3295
3295
|
get(request?: {
|
|
3296
3296
|
/** V1 error format. */
|
|
3297
3297
|
'$.xgafv'?: string;
|
|
@@ -3318,7 +3318,7 @@ declare namespace gapi.client {
|
|
|
3318
3318
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3319
3319
|
uploadType?: string;
|
|
3320
3320
|
}): Request<Policy>;
|
|
3321
|
-
/** List
|
|
3321
|
+
/** List policies. */
|
|
3322
3322
|
list(request?: {
|
|
3323
3323
|
/** V1 error format. */
|
|
3324
3324
|
'$.xgafv'?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -247,12 +247,12 @@ Updates an InboundSsoAssignment. The body of this request is the `inbound_sso_as
|
|
|
247
247
|
await gapi.client.cloudidentity.inboundSsoAssignments.patch({name: 'name'});
|
|
248
248
|
|
|
249
249
|
/*
|
|
250
|
-
Get a
|
|
250
|
+
Get a policy.
|
|
251
251
|
*/
|
|
252
252
|
await gapi.client.cloudidentity.policies.get({name: 'name'});
|
|
253
253
|
|
|
254
254
|
/*
|
|
255
|
-
List
|
|
255
|
+
List policies.
|
|
256
256
|
*/
|
|
257
257
|
await gapi.client.cloudidentity.policies.list({});
|
|
258
258
|
```
|