@maxim_mazurok/gapi.client.iam-v1 0.0.20230622 → 0.0.20230710

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.
Files changed (3) hide show
  1. package/index.d.ts +16 -4
  2. package/package.json +1 -1
  3. package/tests.ts +9 -3
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://iam.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230622
12
+ // Revision: 20230710
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -217,7 +217,10 @@ declare namespace gapi.client {
217
217
  /** Required. The behavior for how OIDC Claims are included in the `assertion` object used for attribute mapping and attribute condition. */
218
218
  assertionClaimsBehavior?:
219
219
  string;
220
- /** Required. The Response Type to request for in the OIDC Authorization Request for web sign-in. */
220
+ /**
221
+ * Required. The Response Type to request for in the OIDC Authorization Request for web sign-in. The `CODE` Response Type is recommended to avoid the Implicit Flow, for security
222
+ * reasons.
223
+ */
221
224
  responseType?:
222
225
  string;
223
226
  }
@@ -786,6 +789,9 @@ declare namespace gapi.client {
786
789
  /** A user-specified display name of the pool in Google Cloud Console. Cannot exceed 32 characters. */
787
790
  displayName?:
788
791
  string;
792
+ /** Output only. Time after which the workforce pool will be permanently purged and cannot be recovered. */
793
+ expireTime?:
794
+ string;
789
795
  /** Output only. The resource name of the pool. Format: `locations/{location}/workforcePools/{workforce_pool_id}` */
790
796
  name?:
791
797
  string;
@@ -845,6 +851,9 @@ declare namespace gapi.client {
845
851
  /** A user-specified display name for the provider. Cannot exceed 32 characters. */
846
852
  displayName?:
847
853
  string;
854
+ /** Output only. Time after which the workload pool provider will be permanently purged and cannot be recovered. */
855
+ expireTime?:
856
+ string;
848
857
  /** Output only. The resource name of the provider. Format: `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}` */
849
858
  name?:
850
859
  string;
@@ -891,8 +900,8 @@ declare namespace gapi.client {
891
900
  /** A display name for the pool. Cannot exceed 32 characters. */
892
901
  displayName?:
893
902
  string;
894
- /** Immutable. The identity mode of the pool. */
895
- identityMode?:
903
+ /** Output only. Time after which the workload identity pool will be permanently purged and cannot be recovered. */
904
+ expireTime?:
896
905
  string;
897
906
  /** Output only. The resource name of the pool. */
898
907
  name?:
@@ -948,6 +957,9 @@ declare namespace gapi.client {
948
957
  /** A display name for the provider. Cannot exceed 32 characters. */
949
958
  displayName?:
950
959
  string;
960
+ /** Output only. Time after which the workload identity pool provider will be permanently purged and cannot be recovered. */
961
+ expireTime?:
962
+ string;
951
963
  /** Output only. The resource name of the provider. */
952
964
  name?:
953
965
  string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.iam-v1",
3
- "version": "0.0.20230622",
3
+ "version": "0.0.20230710",
4
4
  "description": "TypeScript typings for Identity and Access Management (IAM) API v1",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20230622
6
+ // Revision: 20230710
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -59,6 +59,7 @@ gapi.load('client', async () => {
59
59
  description: "Test string",
60
60
  disabled: true,
61
61
  displayName: "Test string",
62
+ expireTime: "Test string",
62
63
  name: "Test string",
63
64
  parent: "Test string",
64
65
  sessionDuration: "Test string",
@@ -100,6 +101,7 @@ gapi.load('client', async () => {
100
101
  description: "Test string",
101
102
  disabled: true,
102
103
  displayName: "Test string",
104
+ expireTime: "Test string",
103
105
  name: "Test string",
104
106
  parent: "Test string",
105
107
  sessionDuration: "Test string",
@@ -171,6 +173,7 @@ gapi.load('client', async () => {
171
173
  description: "Test string",
172
174
  disabled: true,
173
175
  displayName: "Test string",
176
+ expireTime: "Test string",
174
177
  name: "Test string",
175
178
  oidc: {
176
179
  clientId: "Test string",
@@ -224,6 +227,7 @@ gapi.load('client', async () => {
224
227
  description: "Test string",
225
228
  disabled: true,
226
229
  displayName: "Test string",
230
+ expireTime: "Test string",
227
231
  name: "Test string",
228
232
  oidc: {
229
233
  clientId: "Test string",
@@ -390,7 +394,7 @@ gapi.load('client', async () => {
390
394
  description: "Test string",
391
395
  disabled: true,
392
396
  displayName: "Test string",
393
- identityMode: "Test string",
397
+ expireTime: "Test string",
394
398
  name: "Test string",
395
399
  state: "Test string",
396
400
  });
@@ -421,7 +425,7 @@ gapi.load('client', async () => {
421
425
  description: "Test string",
422
426
  disabled: true,
423
427
  displayName: "Test string",
424
- identityMode: "Test string",
428
+ expireTime: "Test string",
425
429
  name: "Test string",
426
430
  state: "Test string",
427
431
  });
@@ -465,6 +469,7 @@ gapi.load('client', async () => {
465
469
  description: "Test string",
466
470
  disabled: true,
467
471
  displayName: "Test string",
472
+ expireTime: "Test string",
468
473
  name: "Test string",
469
474
  oidc: {
470
475
  allowedAudiences: [
@@ -511,6 +516,7 @@ gapi.load('client', async () => {
511
516
  description: "Test string",
512
517
  disabled: true,
513
518
  displayName: "Test string",
519
+ expireTime: "Test string",
514
520
  name: "Test string",
515
521
  oidc: {
516
522
  allowedAudiences: [