@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20240916 → 0.0.20241007
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: 20241007
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2607,8 +2607,49 @@ declare namespace gapi.client {
|
|
|
2607
2607
|
uploadType?: string;
|
|
2608
2608
|
}): Request<ListAuthorizedDomainsResponse>;
|
|
2609
2609
|
}
|
|
2610
|
+
interface VersionsResource {
|
|
2611
|
+
/** Deletes an existing Version resource. */
|
|
2612
|
+
delete(request?: {
|
|
2613
|
+
/** V1 error format. */
|
|
2614
|
+
'$.xgafv'?: string;
|
|
2615
|
+
/** OAuth access token. */
|
|
2616
|
+
access_token?: string;
|
|
2617
|
+
/** Data format for response. */
|
|
2618
|
+
alt?: string;
|
|
2619
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2620
|
+
applicationsId: string;
|
|
2621
|
+
/** JSONP */
|
|
2622
|
+
callback?: string;
|
|
2623
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2624
|
+
fields?: string;
|
|
2625
|
+
/** 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. */
|
|
2626
|
+
key?: string;
|
|
2627
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2628
|
+
locationsId: string;
|
|
2629
|
+
/** OAuth 2.0 token for the current user. */
|
|
2630
|
+
oauth_token?: string;
|
|
2631
|
+
/** Returns response with indentations and line breaks. */
|
|
2632
|
+
prettyPrint?: boolean;
|
|
2633
|
+
/** Part of `name`. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. */
|
|
2634
|
+
projectsId: string;
|
|
2635
|
+
/** 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. */
|
|
2636
|
+
quotaUser?: string;
|
|
2637
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2638
|
+
servicesId: string;
|
|
2639
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2640
|
+
upload_protocol?: string;
|
|
2641
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2642
|
+
uploadType?: string;
|
|
2643
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2644
|
+
versionsId: string;
|
|
2645
|
+
}): Request<Operation>;
|
|
2646
|
+
}
|
|
2647
|
+
interface ServicesResource {
|
|
2648
|
+
versions: VersionsResource;
|
|
2649
|
+
}
|
|
2610
2650
|
interface ApplicationsResource {
|
|
2611
2651
|
authorizedDomains: AuthorizedDomainsResource;
|
|
2652
|
+
services: ServicesResource;
|
|
2612
2653
|
}
|
|
2613
2654
|
interface OperationsResource {
|
|
2614
2655
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|