@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20241118 → 0.0.20241205
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 +34 -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: 20241205
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2653,6 +2653,39 @@ declare namespace gapi.client {
|
|
|
2653
2653
|
}): Request<Operation>;
|
|
2654
2654
|
}
|
|
2655
2655
|
interface ServicesResource {
|
|
2656
|
+
/** Deletes the specified service and all enclosed versions. */
|
|
2657
|
+
delete(request?: {
|
|
2658
|
+
/** V1 error format. */
|
|
2659
|
+
'$.xgafv'?: string;
|
|
2660
|
+
/** OAuth access token. */
|
|
2661
|
+
access_token?: string;
|
|
2662
|
+
/** Data format for response. */
|
|
2663
|
+
alt?: string;
|
|
2664
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2665
|
+
applicationsId: string;
|
|
2666
|
+
/** JSONP */
|
|
2667
|
+
callback?: string;
|
|
2668
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2669
|
+
fields?: string;
|
|
2670
|
+
/** 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. */
|
|
2671
|
+
key?: string;
|
|
2672
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2673
|
+
locationsId: string;
|
|
2674
|
+
/** OAuth 2.0 token for the current user. */
|
|
2675
|
+
oauth_token?: string;
|
|
2676
|
+
/** Returns response with indentations and line breaks. */
|
|
2677
|
+
prettyPrint?: boolean;
|
|
2678
|
+
/** Part of `name`. Name of the resource requested. Example: apps/myapp/services/default. */
|
|
2679
|
+
projectsId: string;
|
|
2680
|
+
/** 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. */
|
|
2681
|
+
quotaUser?: string;
|
|
2682
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2683
|
+
servicesId: string;
|
|
2684
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2685
|
+
upload_protocol?: string;
|
|
2686
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2687
|
+
uploadType?: string;
|
|
2688
|
+
}): Request<Operation>;
|
|
2656
2689
|
versions: VersionsResource;
|
|
2657
2690
|
}
|
|
2658
2691
|
interface ApplicationsResource {
|