@maxim_mazurok/gapi.client.appengine-v1beta 0.2.20260126 → 0.2.20260206
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 +38 -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: 20260206
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3234,6 +3234,43 @@ declare namespace gapi.client {
|
|
|
3234
3234
|
},
|
|
3235
3235
|
body: DebugInstanceRequest,
|
|
3236
3236
|
): Request<Operation>;
|
|
3237
|
+
/** Stops a running instance.The instance might be automatically recreated based on the scaling settings of the version. For more information, see "How Instances are Managed" (standard environment (https://cloud.google.com/appengine/docs/standard/python/how-instances-are-managed) | flexible environment (https://cloud.google.com/appengine/docs/flexible/python/how-instances-are-managed)).To ensure that instances are not re-created and avoid getting billed, you can stop all instances within the target version by changing the serving status of the version to STOPPED with the apps.services.versions.patch (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions/patch) method. */
|
|
3238
|
+
delete(request?: {
|
|
3239
|
+
/** V1 error format. */
|
|
3240
|
+
'$.xgafv'?: string;
|
|
3241
|
+
/** OAuth access token. */
|
|
3242
|
+
access_token?: string;
|
|
3243
|
+
/** Data format for response. */
|
|
3244
|
+
alt?: string;
|
|
3245
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3246
|
+
applicationsId: string;
|
|
3247
|
+
/** JSONP */
|
|
3248
|
+
callback?: string;
|
|
3249
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3250
|
+
fields?: string;
|
|
3251
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3252
|
+
instancesId: string;
|
|
3253
|
+
/** 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. */
|
|
3254
|
+
key?: string;
|
|
3255
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3256
|
+
locationsId: string;
|
|
3257
|
+
/** OAuth 2.0 token for the current user. */
|
|
3258
|
+
oauth_token?: string;
|
|
3259
|
+
/** Returns response with indentations and line breaks. */
|
|
3260
|
+
prettyPrint?: boolean;
|
|
3261
|
+
/** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
|
|
3262
|
+
projectsId: string;
|
|
3263
|
+
/** 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. */
|
|
3264
|
+
quotaUser?: string;
|
|
3265
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3266
|
+
servicesId: string;
|
|
3267
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3268
|
+
upload_protocol?: string;
|
|
3269
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3270
|
+
uploadType?: string;
|
|
3271
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3272
|
+
versionsId: string;
|
|
3273
|
+
}): Request<Operation>;
|
|
3237
3274
|
}
|
|
3238
3275
|
interface VersionsResource {
|
|
3239
3276
|
/** Deletes an existing Version resource. */
|