@maxim_mazurok/gapi.client.appengine-v1 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241205
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2625,6 +2625,39 @@ declare namespace gapi.client {
|
|
|
2625
2625
|
}): Request<Operation>;
|
|
2626
2626
|
}
|
|
2627
2627
|
interface ServicesResource {
|
|
2628
|
+
/** Deletes the specified service and all enclosed versions. */
|
|
2629
|
+
delete(request?: {
|
|
2630
|
+
/** V1 error format. */
|
|
2631
|
+
'$.xgafv'?: string;
|
|
2632
|
+
/** OAuth access token. */
|
|
2633
|
+
access_token?: string;
|
|
2634
|
+
/** Data format for response. */
|
|
2635
|
+
alt?: string;
|
|
2636
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2637
|
+
applicationsId: string;
|
|
2638
|
+
/** JSONP */
|
|
2639
|
+
callback?: string;
|
|
2640
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2641
|
+
fields?: string;
|
|
2642
|
+
/** 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. */
|
|
2643
|
+
key?: string;
|
|
2644
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2645
|
+
locationsId: string;
|
|
2646
|
+
/** OAuth 2.0 token for the current user. */
|
|
2647
|
+
oauth_token?: string;
|
|
2648
|
+
/** Returns response with indentations and line breaks. */
|
|
2649
|
+
prettyPrint?: boolean;
|
|
2650
|
+
/** Part of `name`. Name of the resource requested. Example: apps/myapp/services/default. */
|
|
2651
|
+
projectsId: string;
|
|
2652
|
+
/** 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. */
|
|
2653
|
+
quotaUser?: string;
|
|
2654
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2655
|
+
servicesId: string;
|
|
2656
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2657
|
+
upload_protocol?: string;
|
|
2658
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2659
|
+
uploadType?: string;
|
|
2660
|
+
}): Request<Operation>;
|
|
2628
2661
|
versions: VersionsResource;
|
|
2629
2662
|
}
|
|
2630
2663
|
interface ApplicationsResource {
|