@maxim_mazurok/gapi.client.appengine-v1 0.2.20260219 → 0.2.20260316
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 +145 -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: 20260316
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -248,6 +248,10 @@ declare namespace gapi.client {
|
|
|
248
248
|
/** Static file content to be served for this error. */
|
|
249
249
|
staticFile?: string;
|
|
250
250
|
}
|
|
251
|
+
interface ExportAppImageRequest {
|
|
252
|
+
/** Optional. The full resource name of the AR repository to export to. Format: projects/{project}/locations/{location}/repositories/{repository} If not specified, defaults to projects/{project}/locations/{location}/repositories/gae-standard in the same region as the app. The default repository will be created if it does not exist. */
|
|
253
|
+
destinationRepository?: string;
|
|
254
|
+
}
|
|
251
255
|
interface FeatureSettings {
|
|
252
256
|
/** Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed. */
|
|
253
257
|
splitHealthChecks?: boolean;
|
|
@@ -2015,6 +2019,72 @@ declare namespace gapi.client {
|
|
|
2015
2019
|
/** Part of `name`. See documentation of `appsId`. */
|
|
2016
2020
|
versionsId: string;
|
|
2017
2021
|
}): Request<Operation>;
|
|
2022
|
+
/** Exports a user image to Artifact Registry. */
|
|
2023
|
+
exportAppImage(request: {
|
|
2024
|
+
/** V1 error format. */
|
|
2025
|
+
'$.xgafv'?: string;
|
|
2026
|
+
/** OAuth access token. */
|
|
2027
|
+
access_token?: string;
|
|
2028
|
+
/** Data format for response. */
|
|
2029
|
+
alt?: string;
|
|
2030
|
+
/** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
|
|
2031
|
+
appsId: string;
|
|
2032
|
+
/** JSONP */
|
|
2033
|
+
callback?: string;
|
|
2034
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2035
|
+
fields?: string;
|
|
2036
|
+
/** 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. */
|
|
2037
|
+
key?: string;
|
|
2038
|
+
/** OAuth 2.0 token for the current user. */
|
|
2039
|
+
oauth_token?: string;
|
|
2040
|
+
/** Returns response with indentations and line breaks. */
|
|
2041
|
+
prettyPrint?: boolean;
|
|
2042
|
+
/** 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. */
|
|
2043
|
+
quotaUser?: string;
|
|
2044
|
+
/** Part of `name`. See documentation of `appsId`. */
|
|
2045
|
+
servicesId: string;
|
|
2046
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2047
|
+
upload_protocol?: string;
|
|
2048
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2049
|
+
uploadType?: string;
|
|
2050
|
+
/** Part of `name`. See documentation of `appsId`. */
|
|
2051
|
+
versionsId: string;
|
|
2052
|
+
/** Request body */
|
|
2053
|
+
resource: ExportAppImageRequest;
|
|
2054
|
+
}): Request<Operation>;
|
|
2055
|
+
exportAppImage(
|
|
2056
|
+
request: {
|
|
2057
|
+
/** V1 error format. */
|
|
2058
|
+
'$.xgafv'?: string;
|
|
2059
|
+
/** OAuth access token. */
|
|
2060
|
+
access_token?: string;
|
|
2061
|
+
/** Data format for response. */
|
|
2062
|
+
alt?: string;
|
|
2063
|
+
/** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
|
|
2064
|
+
appsId: string;
|
|
2065
|
+
/** JSONP */
|
|
2066
|
+
callback?: string;
|
|
2067
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2068
|
+
fields?: string;
|
|
2069
|
+
/** 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. */
|
|
2070
|
+
key?: string;
|
|
2071
|
+
/** OAuth 2.0 token for the current user. */
|
|
2072
|
+
oauth_token?: string;
|
|
2073
|
+
/** Returns response with indentations and line breaks. */
|
|
2074
|
+
prettyPrint?: boolean;
|
|
2075
|
+
/** 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. */
|
|
2076
|
+
quotaUser?: string;
|
|
2077
|
+
/** Part of `name`. See documentation of `appsId`. */
|
|
2078
|
+
servicesId: string;
|
|
2079
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2080
|
+
upload_protocol?: string;
|
|
2081
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2082
|
+
uploadType?: string;
|
|
2083
|
+
/** Part of `name`. See documentation of `appsId`. */
|
|
2084
|
+
versionsId: string;
|
|
2085
|
+
},
|
|
2086
|
+
body: ExportAppImageRequest,
|
|
2087
|
+
): Request<Operation>;
|
|
2018
2088
|
/** Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource. */
|
|
2019
2089
|
get(request?: {
|
|
2020
2090
|
/** V1 error format. */
|
|
@@ -3242,6 +3312,80 @@ declare namespace gapi.client {
|
|
|
3242
3312
|
/** Part of `name`. See documentation of `projectsId`. */
|
|
3243
3313
|
versionsId: string;
|
|
3244
3314
|
}): Request<Operation>;
|
|
3315
|
+
/** Exports a user image to Artifact Registry. */
|
|
3316
|
+
exportAppImage(request: {
|
|
3317
|
+
/** V1 error format. */
|
|
3318
|
+
'$.xgafv'?: string;
|
|
3319
|
+
/** OAuth access token. */
|
|
3320
|
+
access_token?: string;
|
|
3321
|
+
/** Data format for response. */
|
|
3322
|
+
alt?: string;
|
|
3323
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3324
|
+
applicationsId: string;
|
|
3325
|
+
/** JSONP */
|
|
3326
|
+
callback?: string;
|
|
3327
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3328
|
+
fields?: string;
|
|
3329
|
+
/** 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. */
|
|
3330
|
+
key?: string;
|
|
3331
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3332
|
+
locationsId: string;
|
|
3333
|
+
/** OAuth 2.0 token for the current user. */
|
|
3334
|
+
oauth_token?: string;
|
|
3335
|
+
/** Returns response with indentations and line breaks. */
|
|
3336
|
+
prettyPrint?: boolean;
|
|
3337
|
+
/** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
|
|
3338
|
+
projectsId: string;
|
|
3339
|
+
/** 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. */
|
|
3340
|
+
quotaUser?: string;
|
|
3341
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3342
|
+
servicesId: string;
|
|
3343
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3344
|
+
upload_protocol?: string;
|
|
3345
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3346
|
+
uploadType?: string;
|
|
3347
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3348
|
+
versionsId: string;
|
|
3349
|
+
/** Request body */
|
|
3350
|
+
resource: ExportAppImageRequest;
|
|
3351
|
+
}): Request<Operation>;
|
|
3352
|
+
exportAppImage(
|
|
3353
|
+
request: {
|
|
3354
|
+
/** V1 error format. */
|
|
3355
|
+
'$.xgafv'?: string;
|
|
3356
|
+
/** OAuth access token. */
|
|
3357
|
+
access_token?: string;
|
|
3358
|
+
/** Data format for response. */
|
|
3359
|
+
alt?: string;
|
|
3360
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3361
|
+
applicationsId: string;
|
|
3362
|
+
/** JSONP */
|
|
3363
|
+
callback?: string;
|
|
3364
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3365
|
+
fields?: string;
|
|
3366
|
+
/** 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. */
|
|
3367
|
+
key?: string;
|
|
3368
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3369
|
+
locationsId: string;
|
|
3370
|
+
/** OAuth 2.0 token for the current user. */
|
|
3371
|
+
oauth_token?: string;
|
|
3372
|
+
/** Returns response with indentations and line breaks. */
|
|
3373
|
+
prettyPrint?: boolean;
|
|
3374
|
+
/** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
|
|
3375
|
+
projectsId: string;
|
|
3376
|
+
/** 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. */
|
|
3377
|
+
quotaUser?: string;
|
|
3378
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3379
|
+
servicesId: string;
|
|
3380
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3381
|
+
upload_protocol?: string;
|
|
3382
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3383
|
+
uploadType?: string;
|
|
3384
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3385
|
+
versionsId: string;
|
|
3386
|
+
},
|
|
3387
|
+
body: ExportAppImageRequest,
|
|
3388
|
+
): Request<Operation>;
|
|
3245
3389
|
/** Updates the specified Version resource. You can specify the following fields depending on the App Engine environment and type of scaling that the version resource uses:Standard environment instance_class (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.instance_class)automatic scaling in the standard environment: automatic_scaling.min_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#StandardSchedulerSettings)basic scaling or manual scaling in the standard environment: serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status) manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling)Flexible environment serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.serving_status)automatic scaling in the flexible environment: automatic_scaling.min_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#Version.FIELDS.automatic_scaling)manual scaling in the flexible environment: manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps.services.versions#manualscaling) */
|
|
3246
3390
|
patch(request: {
|
|
3247
3391
|
/** V1 error format. */
|