@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20230814 → 0.0.20230831

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 +28 -8
  2. package/package.json +1 -1
  3. package/tests.ts +8 -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://appengine.googleapis.com/$discovery/rest?version=v1beta
12
- // Revision: 20230814
12
+ // Revision: 20230831
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -75,6 +75,9 @@ declare namespace gapi.client {
75
75
  /** Output only. The Google Container Registry domain used for storing managed build docker images for this application. */
76
76
  gcrDomain?:
77
77
  string;
78
+ /** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest */
79
+ generatedCustomerMetadata?:
80
+ { [P in string]: any };
78
81
  iap?:
79
82
  IdentityAwareProxy;
80
83
  /**
@@ -296,6 +299,17 @@ declare namespace gapi.client {
296
299
  targetUtilization?:
297
300
  number;
298
301
  }
302
+ interface Date {
303
+ /** Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant. */
304
+ day?:
305
+ number;
306
+ /** Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. */
307
+ month?:
308
+ number;
309
+ /** Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. */
310
+ year?:
311
+ number;
312
+ }
299
313
  interface DebugInstanceRequest {
300
314
  /**
301
315
  * Public SSH key to add to the instance. Examples: [USERNAME]:ssh-rsa [KEY_VALUE] [USERNAME] [USERNAME]:ssh-rsa [KEY_VALUE] google-ssh
@@ -986,6 +1000,15 @@ declare namespace gapi.client {
986
1000
  Volume[];
987
1001
  }
988
1002
  interface Runtime {
1003
+ /** Date when Runtime is decommissioned. */
1004
+ decommissionedDate?:
1005
+ Date;
1006
+ /** Date when Runtime is deprecated. */
1007
+ deprecationDate?:
1008
+ Date;
1009
+ /** Date when Runtime is end of support. */
1010
+ endOfSupportDate?:
1011
+ Date;
989
1012
  /** The environment of the runtime. */
990
1013
  environment?:
991
1014
  string;
@@ -1325,7 +1348,7 @@ declare namespace gapi.client {
1325
1348
  /** The egress setting for the connector, controlling what traffic is diverted through it. */
1326
1349
  egressSetting?:
1327
1350
  string;
1328
- /** Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/us-central1/connectors/c1. */
1351
+ /** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
1329
1352
  name?:
1330
1353
  string;
1331
1354
  }
@@ -2631,12 +2654,6 @@ declare namespace gapi.client {
2631
2654
  /** OAuth 2.0 token for the current user. */
2632
2655
  oauth_token?:
2633
2656
  string;
2634
- /** Optional. Maximum results to return per page. */
2635
- pageSize?:
2636
- number;
2637
- /** Optional. Continuation token for fetching the next page of results. */
2638
- pageToken?:
2639
- string;
2640
2657
  /** Returns response with indentations and line breaks. */
2641
2658
  prettyPrint?:
2642
2659
  boolean;
@@ -3613,6 +3630,9 @@ declare namespace gapi.client {
3613
3630
  /** Selector specifying which fields to include in a partial response. */
3614
3631
  fields?:
3615
3632
  string;
3633
+ /** Optional. Options to include extra data */
3634
+ includeExtraData?:
3635
+ string;
3616
3636
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3617
3637
  key?:
3618
3638
  string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1beta",
3
- "version": "0.0.20230814",
3
+ "version": "0.0.20230831",
4
4
  "description": "TypeScript typings for App Engine Admin API v1beta",
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: 20230814
6
+ // Revision: 20230831
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -58,6 +58,9 @@ gapi.load('client', async () => {
58
58
  useContainerOptimizedOs: true,
59
59
  },
60
60
  gcrDomain: "Test string",
61
+ generatedCustomerMetadata: {
62
+ A: 42
63
+ },
61
64
  iap: {
62
65
  enabled: true,
63
66
  oauth2ClientId: "Test string",
@@ -73,6 +76,7 @@ gapi.load('client', async () => {
73
76
  /** Gets information about an application. */
74
77
  await gapi.client.appengine.apps.get({
75
78
  appsId: "Test string",
79
+ includeExtraData: "Test string",
76
80
  });
77
81
  /**
78
82
  * Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application.
@@ -100,6 +104,9 @@ gapi.load('client', async () => {
100
104
  useContainerOptimizedOs: true,
101
105
  },
102
106
  gcrDomain: "Test string",
107
+ generatedCustomerMetadata: {
108
+ A: 42
109
+ },
103
110
  iap: {
104
111
  enabled: true,
105
112
  oauth2ClientId: "Test string",
@@ -344,8 +351,6 @@ gapi.load('client', async () => {
344
351
  await gapi.client.appengine.apps.runtimes.list({
345
352
  appsId: "Test string",
346
353
  environment: "Test string",
347
- pageSize: 42,
348
- pageToken: "Test string",
349
354
  });
350
355
  /** Deletes the specified service and all enclosed versions. */
351
356
  await gapi.client.appengine.apps.services.delete({