@maxim_mazurok/gapi.client.appengine-v1beta 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 +83 -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=v1beta
12
- // Revision: 20250310
12
+ // Revision: 20250409
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1680,6 +1680,8 @@ declare namespace gapi.client {
1680
1680
  appsId: string;
1681
1681
  /** JSONP */
1682
1682
  callback?: string;
1683
+ /** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
1684
+ extraLocationTypes?: string | string[];
1683
1685
  /** Selector specifying which fields to include in a partial response. */
1684
1686
  fields?: string;
1685
1687
  /** 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). */
@@ -2653,6 +2655,84 @@ declare namespace gapi.client {
2653
2655
  /** Part of `name`. See documentation of `projectsId`. */
2654
2656
  versionsId: string;
2655
2657
  }): Request<Operation>;
2658
+ /** 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/v1beta/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/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/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/v1beta/apps.services.versions#Version.FIELDS.serving_status) manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#manualscaling)Flexible environment serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/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/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/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/v1beta/apps.services.versions#manualscaling) */
2659
+ patch(request: {
2660
+ /** V1 error format. */
2661
+ '$.xgafv'?: string;
2662
+ /** OAuth access token. */
2663
+ access_token?: string;
2664
+ /** Data format for response. */
2665
+ alt?: string;
2666
+ /** Part of `name`. See documentation of `projectsId`. */
2667
+ applicationsId: string;
2668
+ /** JSONP */
2669
+ callback?: string;
2670
+ /** Selector specifying which fields to include in a partial response. */
2671
+ fields?: string;
2672
+ /** 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. */
2673
+ key?: string;
2674
+ /** Part of `name`. See documentation of `projectsId`. */
2675
+ locationsId: string;
2676
+ /** OAuth 2.0 token for the current user. */
2677
+ oauth_token?: string;
2678
+ /** Returns response with indentations and line breaks. */
2679
+ prettyPrint?: boolean;
2680
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default/versions/1. */
2681
+ projectsId: string;
2682
+ /** 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. */
2683
+ quotaUser?: string;
2684
+ /** Part of `name`. See documentation of `projectsId`. */
2685
+ servicesId: string;
2686
+ /** Standard field mask for the set of fields to be updated. */
2687
+ updateMask?: string;
2688
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2689
+ upload_protocol?: string;
2690
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2691
+ uploadType?: string;
2692
+ /** Part of `name`. See documentation of `projectsId`. */
2693
+ versionsId: string;
2694
+ /** Request body */
2695
+ resource: Version;
2696
+ }): Request<Operation>;
2697
+ patch(
2698
+ request: {
2699
+ /** V1 error format. */
2700
+ '$.xgafv'?: string;
2701
+ /** OAuth access token. */
2702
+ access_token?: string;
2703
+ /** Data format for response. */
2704
+ alt?: string;
2705
+ /** Part of `name`. See documentation of `projectsId`. */
2706
+ applicationsId: string;
2707
+ /** JSONP */
2708
+ callback?: string;
2709
+ /** Selector specifying which fields to include in a partial response. */
2710
+ fields?: string;
2711
+ /** 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. */
2712
+ key?: string;
2713
+ /** Part of `name`. See documentation of `projectsId`. */
2714
+ locationsId: string;
2715
+ /** OAuth 2.0 token for the current user. */
2716
+ oauth_token?: string;
2717
+ /** Returns response with indentations and line breaks. */
2718
+ prettyPrint?: boolean;
2719
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default/versions/1. */
2720
+ projectsId: string;
2721
+ /** 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. */
2722
+ quotaUser?: string;
2723
+ /** Part of `name`. See documentation of `projectsId`. */
2724
+ servicesId: string;
2725
+ /** Standard field mask for the set of fields to be updated. */
2726
+ updateMask?: string;
2727
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2728
+ upload_protocol?: string;
2729
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2730
+ uploadType?: string;
2731
+ /** Part of `name`. See documentation of `projectsId`. */
2732
+ versionsId: string;
2733
+ },
2734
+ body: Version,
2735
+ ): Request<Operation>;
2656
2736
  }
2657
2737
  interface ServicesResource {
2658
2738
  /** Deletes the specified service and all enclosed versions. */
@@ -2872,6 +2952,8 @@ declare namespace gapi.client {
2872
2952
  alt?: string;
2873
2953
  /** JSONP */
2874
2954
  callback?: string;
2955
+ /** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
2956
+ extraLocationTypes?: string | string[];
2875
2957
  /** Selector specifying which fields to include in a partial response. */
2876
2958
  fields?: string;
2877
2959
  /** 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). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1beta",
3
- "version": "0.0.20250310",
3
+ "version": "0.0.20250409",
4
4
  "description": "TypeScript typings for App Engine Admin API v1beta",
5
5
  "repository": {
6
6
  "type": "git",