@maxim_mazurok/gapi.client.appengine-v1 0.0.20250310 → 0.0.20250409

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 (2) hide show
  1. package/index.d.ts +81 -1
  2. package/package.json +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://appengine.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250310
12
+ // Revision: 20250409
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1656,6 +1656,8 @@ declare namespace gapi.client {
1656
1656
  appsId: string;
1657
1657
  /** JSONP */
1658
1658
  callback?: string;
1659
+ /** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
1660
+ extraLocationTypes?: string | string[];
1659
1661
  /** Selector specifying which fields to include in a partial response. */
1660
1662
  fields?: string;
1661
1663
  /** A filter to narrow down results to a preferred subset. The filtering language accepts strings like "displayName=tokyo", and is documented in more detail in AIP-160 (https://google.aip.dev/160). */
@@ -2625,6 +2627,84 @@ declare namespace gapi.client {
2625
2627
  /** Part of `name`. See documentation of `projectsId`. */
2626
2628
  versionsId: string;
2627
2629
  }): Request<Operation>;
2630
+ /** Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:Standard environment instance_class (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.instance_class)automatic scaling in the standard environment: automatic_scaling.min_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)basic scaling or manual scaling in the standard environment: serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status) manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling)Flexible environment serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status)automatic scaling in the flexible environment: automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)manual scaling in the flexible environment: manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling) */
2631
+ patch(request: {
2632
+ /** V1 error format. */
2633
+ '$.xgafv'?: string;
2634
+ /** OAuth access token. */
2635
+ access_token?: string;
2636
+ /** Data format for response. */
2637
+ alt?: string;
2638
+ /** Part of `name`. See documentation of `projectsId`. */
2639
+ applicationsId: string;
2640
+ /** JSONP */
2641
+ callback?: string;
2642
+ /** Selector specifying which fields to include in a partial response. */
2643
+ fields?: string;
2644
+ /** 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. */
2645
+ key?: string;
2646
+ /** Part of `name`. See documentation of `projectsId`. */
2647
+ locationsId: string;
2648
+ /** OAuth 2.0 token for the current user. */
2649
+ oauth_token?: string;
2650
+ /** Returns response with indentations and line breaks. */
2651
+ prettyPrint?: boolean;
2652
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default/versions/1. */
2653
+ projectsId: string;
2654
+ /** 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. */
2655
+ quotaUser?: string;
2656
+ /** Part of `name`. See documentation of `projectsId`. */
2657
+ servicesId: string;
2658
+ /** Standard field mask for the set of fields to be updated. */
2659
+ updateMask?: string;
2660
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2661
+ upload_protocol?: string;
2662
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2663
+ uploadType?: string;
2664
+ /** Part of `name`. See documentation of `projectsId`. */
2665
+ versionsId: string;
2666
+ /** Request body */
2667
+ resource: Version;
2668
+ }): Request<Operation>;
2669
+ patch(
2670
+ request: {
2671
+ /** V1 error format. */
2672
+ '$.xgafv'?: string;
2673
+ /** OAuth access token. */
2674
+ access_token?: string;
2675
+ /** Data format for response. */
2676
+ alt?: string;
2677
+ /** Part of `name`. See documentation of `projectsId`. */
2678
+ applicationsId: string;
2679
+ /** JSONP */
2680
+ callback?: string;
2681
+ /** Selector specifying which fields to include in a partial response. */
2682
+ fields?: string;
2683
+ /** 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. */
2684
+ key?: string;
2685
+ /** Part of `name`. See documentation of `projectsId`. */
2686
+ locationsId: string;
2687
+ /** OAuth 2.0 token for the current user. */
2688
+ oauth_token?: string;
2689
+ /** Returns response with indentations and line breaks. */
2690
+ prettyPrint?: boolean;
2691
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default/versions/1. */
2692
+ projectsId: string;
2693
+ /** 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. */
2694
+ quotaUser?: string;
2695
+ /** Part of `name`. See documentation of `projectsId`. */
2696
+ servicesId: string;
2697
+ /** Standard field mask for the set of fields to be updated. */
2698
+ updateMask?: string;
2699
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2700
+ upload_protocol?: string;
2701
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2702
+ uploadType?: string;
2703
+ /** Part of `name`. See documentation of `projectsId`. */
2704
+ versionsId: string;
2705
+ },
2706
+ body: Version,
2707
+ ): Request<Operation>;
2628
2708
  }
2629
2709
  interface ServicesResource {
2630
2710
  /** Deletes the specified service and all enclosed versions. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1",
3
- "version": "0.0.20250310",
3
+ "version": "0.0.20250409",
4
4
  "description": "TypeScript typings for App Engine Admin API v1",
5
5
  "repository": {
6
6
  "type": "git",