@maxim_mazurok/gapi.client.appengine-v1 0.0.20250223 → 0.0.20250310
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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250310
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2663,6 +2663,76 @@ declare namespace gapi.client {
|
|
|
2663
2663
|
versions: VersionsResource;
|
|
2664
2664
|
}
|
|
2665
2665
|
interface ApplicationsResource {
|
|
2666
|
+
/** 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. */
|
|
2667
|
+
patch(request: {
|
|
2668
|
+
/** V1 error format. */
|
|
2669
|
+
'$.xgafv'?: string;
|
|
2670
|
+
/** OAuth access token. */
|
|
2671
|
+
access_token?: string;
|
|
2672
|
+
/** Data format for response. */
|
|
2673
|
+
alt?: string;
|
|
2674
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2675
|
+
applicationsId: string;
|
|
2676
|
+
/** JSONP */
|
|
2677
|
+
callback?: string;
|
|
2678
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2679
|
+
fields?: string;
|
|
2680
|
+
/** 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. */
|
|
2681
|
+
key?: string;
|
|
2682
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2683
|
+
locationsId: string;
|
|
2684
|
+
/** OAuth 2.0 token for the current user. */
|
|
2685
|
+
oauth_token?: string;
|
|
2686
|
+
/** Returns response with indentations and line breaks. */
|
|
2687
|
+
prettyPrint?: boolean;
|
|
2688
|
+
/** Part of `name`. Name of the Application resource to update. Example: apps/myapp. */
|
|
2689
|
+
projectsId: string;
|
|
2690
|
+
/** 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. */
|
|
2691
|
+
quotaUser?: string;
|
|
2692
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
2693
|
+
updateMask?: string;
|
|
2694
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2695
|
+
upload_protocol?: string;
|
|
2696
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2697
|
+
uploadType?: string;
|
|
2698
|
+
/** Request body */
|
|
2699
|
+
resource: Application;
|
|
2700
|
+
}): Request<Operation>;
|
|
2701
|
+
patch(
|
|
2702
|
+
request: {
|
|
2703
|
+
/** V1 error format. */
|
|
2704
|
+
'$.xgafv'?: string;
|
|
2705
|
+
/** OAuth access token. */
|
|
2706
|
+
access_token?: string;
|
|
2707
|
+
/** Data format for response. */
|
|
2708
|
+
alt?: string;
|
|
2709
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2710
|
+
applicationsId: string;
|
|
2711
|
+
/** JSONP */
|
|
2712
|
+
callback?: string;
|
|
2713
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2714
|
+
fields?: string;
|
|
2715
|
+
/** 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. */
|
|
2716
|
+
key?: string;
|
|
2717
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2718
|
+
locationsId: string;
|
|
2719
|
+
/** OAuth 2.0 token for the current user. */
|
|
2720
|
+
oauth_token?: string;
|
|
2721
|
+
/** Returns response with indentations and line breaks. */
|
|
2722
|
+
prettyPrint?: boolean;
|
|
2723
|
+
/** Part of `name`. Name of the Application resource to update. Example: apps/myapp. */
|
|
2724
|
+
projectsId: string;
|
|
2725
|
+
/** 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. */
|
|
2726
|
+
quotaUser?: string;
|
|
2727
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
2728
|
+
updateMask?: string;
|
|
2729
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2730
|
+
upload_protocol?: string;
|
|
2731
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2732
|
+
uploadType?: string;
|
|
2733
|
+
},
|
|
2734
|
+
body: Application,
|
|
2735
|
+
): Request<Operation>;
|
|
2666
2736
|
authorizedDomains: AuthorizedDomainsResource;
|
|
2667
2737
|
services: ServicesResource;
|
|
2668
2738
|
}
|