@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20250429 → 0.0.20250512

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 +115 -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: 20250429
12
+ // Revision: 20250512
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -2619,6 +2619,41 @@ declare namespace gapi.client {
2619
2619
  uploadType?: string;
2620
2620
  }): Request<ListAuthorizedDomainsResponse>;
2621
2621
  }
2622
+ interface DomainMappingsResource {
2623
+ /** Gets the specified domain mapping. */
2624
+ get(request?: {
2625
+ /** V1 error format. */
2626
+ '$.xgafv'?: string;
2627
+ /** OAuth access token. */
2628
+ access_token?: string;
2629
+ /** Data format for response. */
2630
+ alt?: string;
2631
+ /** Part of `name`. See documentation of `projectsId`. */
2632
+ applicationsId: string;
2633
+ /** JSONP */
2634
+ callback?: string;
2635
+ /** Part of `name`. See documentation of `projectsId`. */
2636
+ domainMappingsId: string;
2637
+ /** Selector specifying which fields to include in a partial response. */
2638
+ fields?: string;
2639
+ /** 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. */
2640
+ key?: string;
2641
+ /** Part of `name`. See documentation of `projectsId`. */
2642
+ locationsId: string;
2643
+ /** OAuth 2.0 token for the current user. */
2644
+ oauth_token?: string;
2645
+ /** Returns response with indentations and line breaks. */
2646
+ prettyPrint?: boolean;
2647
+ /** Part of `name`. Name of the resource requested. Example: apps/myapp/domainMappings/example.com. */
2648
+ projectsId: string;
2649
+ /** 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. */
2650
+ quotaUser?: string;
2651
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2652
+ upload_protocol?: string;
2653
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2654
+ uploadType?: string;
2655
+ }): Request<DomainMapping>;
2656
+ }
2622
2657
  interface VersionsResource {
2623
2658
  /** Deletes an existing Version resource. */
2624
2659
  delete(request?: {
@@ -2768,6 +2803,84 @@ declare namespace gapi.client {
2768
2803
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2769
2804
  uploadType?: string;
2770
2805
  }): Request<Operation>;
2806
+ /** Updates the configuration of the specified service. */
2807
+ patch(request: {
2808
+ /** V1 error format. */
2809
+ '$.xgafv'?: string;
2810
+ /** OAuth access token. */
2811
+ access_token?: string;
2812
+ /** Data format for response. */
2813
+ alt?: string;
2814
+ /** Part of `name`. See documentation of `projectsId`. */
2815
+ applicationsId: string;
2816
+ /** JSONP */
2817
+ callback?: string;
2818
+ /** Selector specifying which fields to include in a partial response. */
2819
+ fields?: string;
2820
+ /** 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. */
2821
+ key?: string;
2822
+ /** Part of `name`. See documentation of `projectsId`. */
2823
+ locationsId: string;
2824
+ /** Set to true to gradually shift traffic to one or more versions that you specify. By default, traffic is shifted immediately. For gradual traffic migration, the target versions must be located within instances that are configured for both warmup requests (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#InboundServiceType) and automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#AutomaticScaling). You must specify the shardBy (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services#ShardBy) field in the Service resource. Gradual traffic migration is not supported in the App Engine flexible environment. For examples, see Migrating and Splitting Traffic (https://cloud.google.com/appengine/docs/admin-api/migrating-splitting-traffic). */
2825
+ migrateTraffic?: boolean;
2826
+ /** OAuth 2.0 token for the current user. */
2827
+ oauth_token?: string;
2828
+ /** Returns response with indentations and line breaks. */
2829
+ prettyPrint?: boolean;
2830
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default. */
2831
+ projectsId: string;
2832
+ /** 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. */
2833
+ quotaUser?: string;
2834
+ /** Part of `name`. See documentation of `projectsId`. */
2835
+ servicesId: string;
2836
+ /** Required. Standard field mask for the set of fields to be updated. */
2837
+ updateMask?: string;
2838
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2839
+ upload_protocol?: string;
2840
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2841
+ uploadType?: string;
2842
+ /** Request body */
2843
+ resource: Service;
2844
+ }): Request<Operation>;
2845
+ patch(
2846
+ request: {
2847
+ /** V1 error format. */
2848
+ '$.xgafv'?: string;
2849
+ /** OAuth access token. */
2850
+ access_token?: string;
2851
+ /** Data format for response. */
2852
+ alt?: string;
2853
+ /** Part of `name`. See documentation of `projectsId`. */
2854
+ applicationsId: string;
2855
+ /** JSONP */
2856
+ callback?: string;
2857
+ /** Selector specifying which fields to include in a partial response. */
2858
+ fields?: string;
2859
+ /** 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. */
2860
+ key?: string;
2861
+ /** Part of `name`. See documentation of `projectsId`. */
2862
+ locationsId: string;
2863
+ /** Set to true to gradually shift traffic to one or more versions that you specify. By default, traffic is shifted immediately. For gradual traffic migration, the target versions must be located within instances that are configured for both warmup requests (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#InboundServiceType) and automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#AutomaticScaling). You must specify the shardBy (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services#ShardBy) field in the Service resource. Gradual traffic migration is not supported in the App Engine flexible environment. For examples, see Migrating and Splitting Traffic (https://cloud.google.com/appengine/docs/admin-api/migrating-splitting-traffic). */
2864
+ migrateTraffic?: boolean;
2865
+ /** OAuth 2.0 token for the current user. */
2866
+ oauth_token?: string;
2867
+ /** Returns response with indentations and line breaks. */
2868
+ prettyPrint?: boolean;
2869
+ /** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default. */
2870
+ projectsId: string;
2871
+ /** 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. */
2872
+ quotaUser?: string;
2873
+ /** Part of `name`. See documentation of `projectsId`. */
2874
+ servicesId: string;
2875
+ /** Required. Standard field mask for the set of fields to be updated. */
2876
+ updateMask?: string;
2877
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2878
+ upload_protocol?: string;
2879
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2880
+ uploadType?: string;
2881
+ },
2882
+ body: Service,
2883
+ ): Request<Operation>;
2771
2884
  versions: VersionsResource;
2772
2885
  }
2773
2886
  interface ApplicationsResource {
@@ -2842,6 +2955,7 @@ declare namespace gapi.client {
2842
2955
  body: Application,
2843
2956
  ): Request<Operation>;
2844
2957
  authorizedDomains: AuthorizedDomainsResource;
2958
+ domainMappings: DomainMappingsResource;
2845
2959
  services: ServicesResource;
2846
2960
  }
2847
2961
  interface OperationsResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1beta",
3
- "version": "0.0.20250429",
3
+ "version": "0.0.20250512",
4
4
  "description": "TypeScript typings for App Engine Admin API v1beta",
5
5
  "repository": {
6
6
  "type": "git",