@maxim_mazurok/gapi.client.appengine-v1 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.
- package/index.d.ts +115 -1
- 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:
|
|
12
|
+
// Revision: 20250512
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2591,6 +2591,41 @@ declare namespace gapi.client {
|
|
|
2591
2591
|
uploadType?: string;
|
|
2592
2592
|
}): Request<ListAuthorizedDomainsResponse>;
|
|
2593
2593
|
}
|
|
2594
|
+
interface DomainMappingsResource {
|
|
2595
|
+
/** Gets the specified domain mapping. */
|
|
2596
|
+
get(request?: {
|
|
2597
|
+
/** V1 error format. */
|
|
2598
|
+
'$.xgafv'?: string;
|
|
2599
|
+
/** OAuth access token. */
|
|
2600
|
+
access_token?: string;
|
|
2601
|
+
/** Data format for response. */
|
|
2602
|
+
alt?: string;
|
|
2603
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2604
|
+
applicationsId: string;
|
|
2605
|
+
/** JSONP */
|
|
2606
|
+
callback?: string;
|
|
2607
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2608
|
+
domainMappingsId: string;
|
|
2609
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2610
|
+
fields?: string;
|
|
2611
|
+
/** 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. */
|
|
2612
|
+
key?: string;
|
|
2613
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2614
|
+
locationsId: string;
|
|
2615
|
+
/** OAuth 2.0 token for the current user. */
|
|
2616
|
+
oauth_token?: string;
|
|
2617
|
+
/** Returns response with indentations and line breaks. */
|
|
2618
|
+
prettyPrint?: boolean;
|
|
2619
|
+
/** Part of `name`. Name of the resource requested. Example: apps/myapp/domainMappings/example.com. */
|
|
2620
|
+
projectsId: string;
|
|
2621
|
+
/** 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. */
|
|
2622
|
+
quotaUser?: string;
|
|
2623
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2624
|
+
upload_protocol?: string;
|
|
2625
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2626
|
+
uploadType?: string;
|
|
2627
|
+
}): Request<DomainMapping>;
|
|
2628
|
+
}
|
|
2594
2629
|
interface VersionsResource {
|
|
2595
2630
|
/** Deletes an existing Version resource. */
|
|
2596
2631
|
delete(request?: {
|
|
@@ -2740,6 +2775,84 @@ declare namespace gapi.client {
|
|
|
2740
2775
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2741
2776
|
uploadType?: string;
|
|
2742
2777
|
}): Request<Operation>;
|
|
2778
|
+
/** Updates the configuration of the specified service. */
|
|
2779
|
+
patch(request: {
|
|
2780
|
+
/** V1 error format. */
|
|
2781
|
+
'$.xgafv'?: string;
|
|
2782
|
+
/** OAuth access token. */
|
|
2783
|
+
access_token?: string;
|
|
2784
|
+
/** Data format for response. */
|
|
2785
|
+
alt?: string;
|
|
2786
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2787
|
+
applicationsId: string;
|
|
2788
|
+
/** JSONP */
|
|
2789
|
+
callback?: string;
|
|
2790
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2791
|
+
fields?: string;
|
|
2792
|
+
/** 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. */
|
|
2793
|
+
key?: string;
|
|
2794
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2795
|
+
locationsId: string;
|
|
2796
|
+
/** 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/v1/apps.services.versions#InboundServiceType) and automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#AutomaticScaling). You must specify the shardBy (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/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). */
|
|
2797
|
+
migrateTraffic?: boolean;
|
|
2798
|
+
/** OAuth 2.0 token for the current user. */
|
|
2799
|
+
oauth_token?: string;
|
|
2800
|
+
/** Returns response with indentations and line breaks. */
|
|
2801
|
+
prettyPrint?: boolean;
|
|
2802
|
+
/** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default. */
|
|
2803
|
+
projectsId: string;
|
|
2804
|
+
/** 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. */
|
|
2805
|
+
quotaUser?: string;
|
|
2806
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2807
|
+
servicesId: string;
|
|
2808
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
2809
|
+
updateMask?: string;
|
|
2810
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2811
|
+
upload_protocol?: string;
|
|
2812
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2813
|
+
uploadType?: string;
|
|
2814
|
+
/** Request body */
|
|
2815
|
+
resource: Service;
|
|
2816
|
+
}): Request<Operation>;
|
|
2817
|
+
patch(
|
|
2818
|
+
request: {
|
|
2819
|
+
/** V1 error format. */
|
|
2820
|
+
'$.xgafv'?: string;
|
|
2821
|
+
/** OAuth access token. */
|
|
2822
|
+
access_token?: string;
|
|
2823
|
+
/** Data format for response. */
|
|
2824
|
+
alt?: string;
|
|
2825
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2826
|
+
applicationsId: string;
|
|
2827
|
+
/** JSONP */
|
|
2828
|
+
callback?: string;
|
|
2829
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2830
|
+
fields?: string;
|
|
2831
|
+
/** 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. */
|
|
2832
|
+
key?: string;
|
|
2833
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2834
|
+
locationsId: string;
|
|
2835
|
+
/** 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/v1/apps.services.versions#InboundServiceType) and automatic scaling (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#AutomaticScaling). You must specify the shardBy (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/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). */
|
|
2836
|
+
migrateTraffic?: boolean;
|
|
2837
|
+
/** OAuth 2.0 token for the current user. */
|
|
2838
|
+
oauth_token?: string;
|
|
2839
|
+
/** Returns response with indentations and line breaks. */
|
|
2840
|
+
prettyPrint?: boolean;
|
|
2841
|
+
/** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default. */
|
|
2842
|
+
projectsId: string;
|
|
2843
|
+
/** 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. */
|
|
2844
|
+
quotaUser?: string;
|
|
2845
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2846
|
+
servicesId: string;
|
|
2847
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
2848
|
+
updateMask?: string;
|
|
2849
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2850
|
+
upload_protocol?: string;
|
|
2851
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2852
|
+
uploadType?: string;
|
|
2853
|
+
},
|
|
2854
|
+
body: Service,
|
|
2855
|
+
): Request<Operation>;
|
|
2743
2856
|
versions: VersionsResource;
|
|
2744
2857
|
}
|
|
2745
2858
|
interface ApplicationsResource {
|
|
@@ -2814,6 +2927,7 @@ declare namespace gapi.client {
|
|
|
2814
2927
|
body: Application,
|
|
2815
2928
|
): Request<Operation>;
|
|
2816
2929
|
authorizedDomains: AuthorizedDomainsResource;
|
|
2930
|
+
domainMappings: DomainMappingsResource;
|
|
2817
2931
|
services: ServicesResource;
|
|
2818
2932
|
}
|
|
2819
2933
|
interface LocationsResource {
|