@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20250512 → 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 +249 -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?: {
|
|
@@ -2954,6 +3201,7 @@ declare namespace gapi.client {
|
|
|
2954
3201
|
},
|
|
2955
3202
|
body: Application,
|
|
2956
3203
|
): Request<Operation>;
|
|
3204
|
+
authorizedCertificates: AuthorizedCertificatesResource;
|
|
2957
3205
|
authorizedDomains: AuthorizedDomainsResource;
|
|
2958
3206
|
domainMappings: DomainMappingsResource;
|
|
2959
3207
|
services: ServicesResource;
|