@maxim_mazurok/gapi.client.appengine-v1 0.0.20241111 → 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 +42 -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
|
|
|
@@ -617,6 +617,14 @@ declare namespace gapi.client {
|
|
|
617
617
|
/** Target requests per second. */
|
|
618
618
|
targetRequestCountPerSecond?: number;
|
|
619
619
|
}
|
|
620
|
+
interface ResourceEvent {
|
|
621
|
+
/** The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls. required */
|
|
622
|
+
eventId?: string;
|
|
623
|
+
/** The name of the resource for which this event is. required */
|
|
624
|
+
name?: string;
|
|
625
|
+
/** The state of the project that led to this event. */
|
|
626
|
+
state?: ContainerState;
|
|
627
|
+
}
|
|
620
628
|
interface ResourceRecord {
|
|
621
629
|
/** Relative name of the object affected by this record. Only applicable for CNAME records. Example: 'www'. */
|
|
622
630
|
name?: string;
|
|
@@ -2617,6 +2625,39 @@ declare namespace gapi.client {
|
|
|
2617
2625
|
}): Request<Operation>;
|
|
2618
2626
|
}
|
|
2619
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>;
|
|
2620
2661
|
versions: VersionsResource;
|
|
2621
2662
|
}
|
|
2622
2663
|
interface ApplicationsResource {
|