@maxim_mazurok/gapi.client.appengine-v1beta 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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241205
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -641,6 +641,14 @@ declare namespace gapi.client {
|
|
|
641
641
|
/** Target requests per second. */
|
|
642
642
|
targetRequestCountPerSecond?: number;
|
|
643
643
|
}
|
|
644
|
+
interface ResourceEvent {
|
|
645
|
+
/** The unique ID for this per-resource event. CLHs can use this value to dedup repeated calls. required */
|
|
646
|
+
eventId?: string;
|
|
647
|
+
/** The name of the resource for which this event is. required */
|
|
648
|
+
name?: string;
|
|
649
|
+
/** The state of the project that led to this event. */
|
|
650
|
+
state?: ContainerState;
|
|
651
|
+
}
|
|
644
652
|
interface ResourceRecord {
|
|
645
653
|
/** Relative name of the object affected by this record. Only applicable for CNAME records. Example: 'www'. */
|
|
646
654
|
name?: string;
|
|
@@ -2645,6 +2653,39 @@ declare namespace gapi.client {
|
|
|
2645
2653
|
}): Request<Operation>;
|
|
2646
2654
|
}
|
|
2647
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>;
|
|
2648
2689
|
versions: VersionsResource;
|
|
2649
2690
|
}
|
|
2650
2691
|
interface ApplicationsResource {
|