@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20250429 → 0.0.20250611
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 +363 -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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250611
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2582,6 +2582,253 @@ declare namespace gapi.client {
|
|
|
2582
2582
|
operations: OperationsResource;
|
|
2583
2583
|
services: ServicesResource;
|
|
2584
2584
|
}
|
|
2585
|
+
interface AuthorizedCertificatesResource {
|
|
2586
|
+
/** Uploads the specified SSL certificate. */
|
|
2587
|
+
create(request: {
|
|
2588
|
+
/** V1 error format. */
|
|
2589
|
+
'$.xgafv'?: string;
|
|
2590
|
+
/** OAuth access token. */
|
|
2591
|
+
access_token?: string;
|
|
2592
|
+
/** Data format for response. */
|
|
2593
|
+
alt?: string;
|
|
2594
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2595
|
+
applicationsId: string;
|
|
2596
|
+
/** JSONP */
|
|
2597
|
+
callback?: string;
|
|
2598
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2599
|
+
fields?: string;
|
|
2600
|
+
/** 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. */
|
|
2601
|
+
key?: string;
|
|
2602
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2603
|
+
locationsId: string;
|
|
2604
|
+
/** OAuth 2.0 token for the current user. */
|
|
2605
|
+
oauth_token?: string;
|
|
2606
|
+
/** Returns response with indentations and line breaks. */
|
|
2607
|
+
prettyPrint?: boolean;
|
|
2608
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2609
|
+
projectsId: string;
|
|
2610
|
+
/** 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. */
|
|
2611
|
+
quotaUser?: string;
|
|
2612
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2613
|
+
upload_protocol?: string;
|
|
2614
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2615
|
+
uploadType?: string;
|
|
2616
|
+
/** Request body */
|
|
2617
|
+
resource: AuthorizedCertificate;
|
|
2618
|
+
}): Request<AuthorizedCertificate>;
|
|
2619
|
+
create(
|
|
2620
|
+
request: {
|
|
2621
|
+
/** V1 error format. */
|
|
2622
|
+
'$.xgafv'?: string;
|
|
2623
|
+
/** OAuth access token. */
|
|
2624
|
+
access_token?: string;
|
|
2625
|
+
/** Data format for response. */
|
|
2626
|
+
alt?: string;
|
|
2627
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2628
|
+
applicationsId: string;
|
|
2629
|
+
/** JSONP */
|
|
2630
|
+
callback?: string;
|
|
2631
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2632
|
+
fields?: string;
|
|
2633
|
+
/** 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. */
|
|
2634
|
+
key?: string;
|
|
2635
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2636
|
+
locationsId: string;
|
|
2637
|
+
/** OAuth 2.0 token for the current user. */
|
|
2638
|
+
oauth_token?: string;
|
|
2639
|
+
/** Returns response with indentations and line breaks. */
|
|
2640
|
+
prettyPrint?: boolean;
|
|
2641
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2642
|
+
projectsId: string;
|
|
2643
|
+
/** 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. */
|
|
2644
|
+
quotaUser?: string;
|
|
2645
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2646
|
+
upload_protocol?: string;
|
|
2647
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2648
|
+
uploadType?: string;
|
|
2649
|
+
},
|
|
2650
|
+
body: AuthorizedCertificate,
|
|
2651
|
+
): Request<AuthorizedCertificate>;
|
|
2652
|
+
/** Deletes the specified SSL certificate. */
|
|
2653
|
+
delete(request?: {
|
|
2654
|
+
/** V1 error format. */
|
|
2655
|
+
'$.xgafv'?: string;
|
|
2656
|
+
/** OAuth access token. */
|
|
2657
|
+
access_token?: string;
|
|
2658
|
+
/** Data format for response. */
|
|
2659
|
+
alt?: string;
|
|
2660
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2661
|
+
applicationsId: string;
|
|
2662
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2663
|
+
authorizedCertificatesId: string;
|
|
2664
|
+
/** JSONP */
|
|
2665
|
+
callback?: string;
|
|
2666
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2667
|
+
fields?: string;
|
|
2668
|
+
/** 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. */
|
|
2669
|
+
key?: string;
|
|
2670
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2671
|
+
locationsId: string;
|
|
2672
|
+
/** OAuth 2.0 token for the current user. */
|
|
2673
|
+
oauth_token?: string;
|
|
2674
|
+
/** Returns response with indentations and line breaks. */
|
|
2675
|
+
prettyPrint?: boolean;
|
|
2676
|
+
/** Part of `name`. Name of the resource to delete. Example: apps/myapp/authorizedCertificates/12345. */
|
|
2677
|
+
projectsId: string;
|
|
2678
|
+
/** 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. */
|
|
2679
|
+
quotaUser?: string;
|
|
2680
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2681
|
+
upload_protocol?: string;
|
|
2682
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2683
|
+
uploadType?: string;
|
|
2684
|
+
}): Request<{}>;
|
|
2685
|
+
/** Gets the specified SSL certificate. */
|
|
2686
|
+
get(request?: {
|
|
2687
|
+
/** V1 error format. */
|
|
2688
|
+
'$.xgafv'?: string;
|
|
2689
|
+
/** OAuth access token. */
|
|
2690
|
+
access_token?: string;
|
|
2691
|
+
/** Data format for response. */
|
|
2692
|
+
alt?: string;
|
|
2693
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2694
|
+
applicationsId: string;
|
|
2695
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2696
|
+
authorizedCertificatesId: string;
|
|
2697
|
+
/** JSONP */
|
|
2698
|
+
callback?: string;
|
|
2699
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2700
|
+
fields?: string;
|
|
2701
|
+
/** 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. */
|
|
2702
|
+
key?: string;
|
|
2703
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2704
|
+
locationsId: string;
|
|
2705
|
+
/** OAuth 2.0 token for the current user. */
|
|
2706
|
+
oauth_token?: string;
|
|
2707
|
+
/** Returns response with indentations and line breaks. */
|
|
2708
|
+
prettyPrint?: boolean;
|
|
2709
|
+
/** Part of `name`. Name of the resource requested. Example: apps/myapp/authorizedCertificates/12345. */
|
|
2710
|
+
projectsId: string;
|
|
2711
|
+
/** 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. */
|
|
2712
|
+
quotaUser?: string;
|
|
2713
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2714
|
+
upload_protocol?: string;
|
|
2715
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2716
|
+
uploadType?: string;
|
|
2717
|
+
/** Controls the set of fields returned in the GET response. */
|
|
2718
|
+
view?: string;
|
|
2719
|
+
}): Request<AuthorizedCertificate>;
|
|
2720
|
+
/** Lists all SSL certificates the user is authorized to administer. */
|
|
2721
|
+
list(request?: {
|
|
2722
|
+
/** V1 error format. */
|
|
2723
|
+
'$.xgafv'?: string;
|
|
2724
|
+
/** OAuth access token. */
|
|
2725
|
+
access_token?: string;
|
|
2726
|
+
/** Data format for response. */
|
|
2727
|
+
alt?: string;
|
|
2728
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2729
|
+
applicationsId: string;
|
|
2730
|
+
/** JSONP */
|
|
2731
|
+
callback?: string;
|
|
2732
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2733
|
+
fields?: string;
|
|
2734
|
+
/** 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. */
|
|
2735
|
+
key?: string;
|
|
2736
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2737
|
+
locationsId: string;
|
|
2738
|
+
/** OAuth 2.0 token for the current user. */
|
|
2739
|
+
oauth_token?: string;
|
|
2740
|
+
/** Maximum results to return per page. */
|
|
2741
|
+
pageSize?: number;
|
|
2742
|
+
/** Continuation token for fetching the next page of results. */
|
|
2743
|
+
pageToken?: string;
|
|
2744
|
+
/** Returns response with indentations and line breaks. */
|
|
2745
|
+
prettyPrint?: boolean;
|
|
2746
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2747
|
+
projectsId: string;
|
|
2748
|
+
/** 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. */
|
|
2749
|
+
quotaUser?: string;
|
|
2750
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2751
|
+
upload_protocol?: string;
|
|
2752
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2753
|
+
uploadType?: string;
|
|
2754
|
+
/** Controls the set of fields returned in the LIST response. */
|
|
2755
|
+
view?: string;
|
|
2756
|
+
}): Request<ListAuthorizedCertificatesResponse>;
|
|
2757
|
+
/** Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated. */
|
|
2758
|
+
patch(request: {
|
|
2759
|
+
/** V1 error format. */
|
|
2760
|
+
'$.xgafv'?: string;
|
|
2761
|
+
/** OAuth access token. */
|
|
2762
|
+
access_token?: string;
|
|
2763
|
+
/** Data format for response. */
|
|
2764
|
+
alt?: string;
|
|
2765
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2766
|
+
applicationsId: string;
|
|
2767
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2768
|
+
authorizedCertificatesId: string;
|
|
2769
|
+
/** JSONP */
|
|
2770
|
+
callback?: string;
|
|
2771
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2772
|
+
fields?: string;
|
|
2773
|
+
/** 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. */
|
|
2774
|
+
key?: string;
|
|
2775
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2776
|
+
locationsId: string;
|
|
2777
|
+
/** OAuth 2.0 token for the current user. */
|
|
2778
|
+
oauth_token?: string;
|
|
2779
|
+
/** Returns response with indentations and line breaks. */
|
|
2780
|
+
prettyPrint?: boolean;
|
|
2781
|
+
/** Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
|
|
2782
|
+
projectsId: string;
|
|
2783
|
+
/** 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. */
|
|
2784
|
+
quotaUser?: string;
|
|
2785
|
+
/** Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields. */
|
|
2786
|
+
updateMask?: string;
|
|
2787
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2788
|
+
upload_protocol?: string;
|
|
2789
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2790
|
+
uploadType?: string;
|
|
2791
|
+
/** Request body */
|
|
2792
|
+
resource: AuthorizedCertificate;
|
|
2793
|
+
}): Request<AuthorizedCertificate>;
|
|
2794
|
+
patch(
|
|
2795
|
+
request: {
|
|
2796
|
+
/** V1 error format. */
|
|
2797
|
+
'$.xgafv'?: string;
|
|
2798
|
+
/** OAuth access token. */
|
|
2799
|
+
access_token?: string;
|
|
2800
|
+
/** Data format for response. */
|
|
2801
|
+
alt?: string;
|
|
2802
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2803
|
+
applicationsId: string;
|
|
2804
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2805
|
+
authorizedCertificatesId: string;
|
|
2806
|
+
/** JSONP */
|
|
2807
|
+
callback?: string;
|
|
2808
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2809
|
+
fields?: string;
|
|
2810
|
+
/** 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. */
|
|
2811
|
+
key?: string;
|
|
2812
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2813
|
+
locationsId: string;
|
|
2814
|
+
/** OAuth 2.0 token for the current user. */
|
|
2815
|
+
oauth_token?: string;
|
|
2816
|
+
/** Returns response with indentations and line breaks. */
|
|
2817
|
+
prettyPrint?: boolean;
|
|
2818
|
+
/** Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345. */
|
|
2819
|
+
projectsId: string;
|
|
2820
|
+
/** 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. */
|
|
2821
|
+
quotaUser?: string;
|
|
2822
|
+
/** Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields. */
|
|
2823
|
+
updateMask?: string;
|
|
2824
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2825
|
+
upload_protocol?: string;
|
|
2826
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2827
|
+
uploadType?: string;
|
|
2828
|
+
},
|
|
2829
|
+
body: AuthorizedCertificate,
|
|
2830
|
+
): Request<AuthorizedCertificate>;
|
|
2831
|
+
}
|
|
2585
2832
|
interface AuthorizedDomainsResource {
|
|
2586
2833
|
/** Lists all domains the user is authorized to administer. */
|
|
2587
2834
|
list(request?: {
|
|
@@ -2619,6 +2866,41 @@ declare namespace gapi.client {
|
|
|
2619
2866
|
uploadType?: string;
|
|
2620
2867
|
}): Request<ListAuthorizedDomainsResponse>;
|
|
2621
2868
|
}
|
|
2869
|
+
interface DomainMappingsResource {
|
|
2870
|
+
/** Gets the specified domain mapping. */
|
|
2871
|
+
get(request?: {
|
|
2872
|
+
/** V1 error format. */
|
|
2873
|
+
'$.xgafv'?: string;
|
|
2874
|
+
/** OAuth access token. */
|
|
2875
|
+
access_token?: string;
|
|
2876
|
+
/** Data format for response. */
|
|
2877
|
+
alt?: string;
|
|
2878
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2879
|
+
applicationsId: string;
|
|
2880
|
+
/** JSONP */
|
|
2881
|
+
callback?: string;
|
|
2882
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2883
|
+
domainMappingsId: string;
|
|
2884
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2885
|
+
fields?: string;
|
|
2886
|
+
/** 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. */
|
|
2887
|
+
key?: string;
|
|
2888
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2889
|
+
locationsId: string;
|
|
2890
|
+
/** OAuth 2.0 token for the current user. */
|
|
2891
|
+
oauth_token?: string;
|
|
2892
|
+
/** Returns response with indentations and line breaks. */
|
|
2893
|
+
prettyPrint?: boolean;
|
|
2894
|
+
/** Part of `name`. Name of the resource requested. Example: apps/myapp/domainMappings/example.com. */
|
|
2895
|
+
projectsId: string;
|
|
2896
|
+
/** 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. */
|
|
2897
|
+
quotaUser?: string;
|
|
2898
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2899
|
+
upload_protocol?: string;
|
|
2900
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2901
|
+
uploadType?: string;
|
|
2902
|
+
}): Request<DomainMapping>;
|
|
2903
|
+
}
|
|
2622
2904
|
interface VersionsResource {
|
|
2623
2905
|
/** Deletes an existing Version resource. */
|
|
2624
2906
|
delete(request?: {
|
|
@@ -2768,6 +3050,84 @@ declare namespace gapi.client {
|
|
|
2768
3050
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2769
3051
|
uploadType?: string;
|
|
2770
3052
|
}): Request<Operation>;
|
|
3053
|
+
/** Updates the configuration of the specified service. */
|
|
3054
|
+
patch(request: {
|
|
3055
|
+
/** V1 error format. */
|
|
3056
|
+
'$.xgafv'?: string;
|
|
3057
|
+
/** OAuth access token. */
|
|
3058
|
+
access_token?: string;
|
|
3059
|
+
/** Data format for response. */
|
|
3060
|
+
alt?: string;
|
|
3061
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3062
|
+
applicationsId: string;
|
|
3063
|
+
/** JSONP */
|
|
3064
|
+
callback?: string;
|
|
3065
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3066
|
+
fields?: string;
|
|
3067
|
+
/** 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. */
|
|
3068
|
+
key?: string;
|
|
3069
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3070
|
+
locationsId: string;
|
|
3071
|
+
/** 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). */
|
|
3072
|
+
migrateTraffic?: boolean;
|
|
3073
|
+
/** OAuth 2.0 token for the current user. */
|
|
3074
|
+
oauth_token?: string;
|
|
3075
|
+
/** Returns response with indentations and line breaks. */
|
|
3076
|
+
prettyPrint?: boolean;
|
|
3077
|
+
/** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default. */
|
|
3078
|
+
projectsId: string;
|
|
3079
|
+
/** 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. */
|
|
3080
|
+
quotaUser?: string;
|
|
3081
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3082
|
+
servicesId: string;
|
|
3083
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3084
|
+
updateMask?: string;
|
|
3085
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3086
|
+
upload_protocol?: string;
|
|
3087
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3088
|
+
uploadType?: string;
|
|
3089
|
+
/** Request body */
|
|
3090
|
+
resource: Service;
|
|
3091
|
+
}): Request<Operation>;
|
|
3092
|
+
patch(
|
|
3093
|
+
request: {
|
|
3094
|
+
/** V1 error format. */
|
|
3095
|
+
'$.xgafv'?: string;
|
|
3096
|
+
/** OAuth access token. */
|
|
3097
|
+
access_token?: string;
|
|
3098
|
+
/** Data format for response. */
|
|
3099
|
+
alt?: string;
|
|
3100
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3101
|
+
applicationsId: string;
|
|
3102
|
+
/** JSONP */
|
|
3103
|
+
callback?: string;
|
|
3104
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3105
|
+
fields?: string;
|
|
3106
|
+
/** 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. */
|
|
3107
|
+
key?: string;
|
|
3108
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3109
|
+
locationsId: string;
|
|
3110
|
+
/** 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). */
|
|
3111
|
+
migrateTraffic?: boolean;
|
|
3112
|
+
/** OAuth 2.0 token for the current user. */
|
|
3113
|
+
oauth_token?: string;
|
|
3114
|
+
/** Returns response with indentations and line breaks. */
|
|
3115
|
+
prettyPrint?: boolean;
|
|
3116
|
+
/** Part of `name`. Name of the resource to update. Example: apps/myapp/services/default. */
|
|
3117
|
+
projectsId: string;
|
|
3118
|
+
/** 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. */
|
|
3119
|
+
quotaUser?: string;
|
|
3120
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3121
|
+
servicesId: string;
|
|
3122
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3123
|
+
updateMask?: string;
|
|
3124
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3125
|
+
upload_protocol?: string;
|
|
3126
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3127
|
+
uploadType?: string;
|
|
3128
|
+
},
|
|
3129
|
+
body: Service,
|
|
3130
|
+
): Request<Operation>;
|
|
2771
3131
|
versions: VersionsResource;
|
|
2772
3132
|
}
|
|
2773
3133
|
interface ApplicationsResource {
|
|
@@ -2841,7 +3201,9 @@ declare namespace gapi.client {
|
|
|
2841
3201
|
},
|
|
2842
3202
|
body: Application,
|
|
2843
3203
|
): Request<Operation>;
|
|
3204
|
+
authorizedCertificates: AuthorizedCertificatesResource;
|
|
2844
3205
|
authorizedDomains: AuthorizedDomainsResource;
|
|
3206
|
+
domainMappings: DomainMappingsResource;
|
|
2845
3207
|
services: ServicesResource;
|
|
2846
3208
|
}
|
|
2847
3209
|
interface OperationsResource {
|