@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20250303 → 0.0.20250312
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 +71 -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: 20250312
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2691,6 +2691,76 @@ declare namespace gapi.client {
|
|
|
2691
2691
|
versions: VersionsResource;
|
|
2692
2692
|
}
|
|
2693
2693
|
interface ApplicationsResource {
|
|
2694
|
+
/** Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application. */
|
|
2695
|
+
patch(request: {
|
|
2696
|
+
/** V1 error format. */
|
|
2697
|
+
'$.xgafv'?: string;
|
|
2698
|
+
/** OAuth access token. */
|
|
2699
|
+
access_token?: string;
|
|
2700
|
+
/** Data format for response. */
|
|
2701
|
+
alt?: string;
|
|
2702
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2703
|
+
applicationsId: string;
|
|
2704
|
+
/** JSONP */
|
|
2705
|
+
callback?: string;
|
|
2706
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2707
|
+
fields?: string;
|
|
2708
|
+
/** 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. */
|
|
2709
|
+
key?: string;
|
|
2710
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2711
|
+
locationsId: string;
|
|
2712
|
+
/** OAuth 2.0 token for the current user. */
|
|
2713
|
+
oauth_token?: string;
|
|
2714
|
+
/** Returns response with indentations and line breaks. */
|
|
2715
|
+
prettyPrint?: boolean;
|
|
2716
|
+
/** Part of `name`. Name of the Application resource to update. Example: apps/myapp. */
|
|
2717
|
+
projectsId: string;
|
|
2718
|
+
/** 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. */
|
|
2719
|
+
quotaUser?: string;
|
|
2720
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
2721
|
+
updateMask?: string;
|
|
2722
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2723
|
+
upload_protocol?: string;
|
|
2724
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2725
|
+
uploadType?: string;
|
|
2726
|
+
/** Request body */
|
|
2727
|
+
resource: Application;
|
|
2728
|
+
}): Request<Operation>;
|
|
2729
|
+
patch(
|
|
2730
|
+
request: {
|
|
2731
|
+
/** V1 error format. */
|
|
2732
|
+
'$.xgafv'?: string;
|
|
2733
|
+
/** OAuth access token. */
|
|
2734
|
+
access_token?: string;
|
|
2735
|
+
/** Data format for response. */
|
|
2736
|
+
alt?: string;
|
|
2737
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2738
|
+
applicationsId: string;
|
|
2739
|
+
/** JSONP */
|
|
2740
|
+
callback?: string;
|
|
2741
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2742
|
+
fields?: string;
|
|
2743
|
+
/** 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. */
|
|
2744
|
+
key?: string;
|
|
2745
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2746
|
+
locationsId: string;
|
|
2747
|
+
/** OAuth 2.0 token for the current user. */
|
|
2748
|
+
oauth_token?: string;
|
|
2749
|
+
/** Returns response with indentations and line breaks. */
|
|
2750
|
+
prettyPrint?: boolean;
|
|
2751
|
+
/** Part of `name`. Name of the Application resource to update. Example: apps/myapp. */
|
|
2752
|
+
projectsId: string;
|
|
2753
|
+
/** 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. */
|
|
2754
|
+
quotaUser?: string;
|
|
2755
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
2756
|
+
updateMask?: string;
|
|
2757
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2758
|
+
upload_protocol?: string;
|
|
2759
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2760
|
+
uploadType?: string;
|
|
2761
|
+
},
|
|
2762
|
+
body: Application,
|
|
2763
|
+
): Request<Operation>;
|
|
2694
2764
|
authorizedDomains: AuthorizedDomainsResource;
|
|
2695
2765
|
services: ServicesResource;
|
|
2696
2766
|
}
|