@maxim_mazurok/gapi.client.appengine-v1 0.2.20251111 → 0.2.20251210

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.
Files changed (2) hide show
  1. package/index.d.ts +149 -3
  2. 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: 20251111
12
+ // Revision: 20251210
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -248,6 +248,12 @@ 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
+ /** Optional. Optional: A service account to use for authenticating to Artifact Registry. */
255
+ serviceAccount?: string;
256
+ }
251
257
  interface FeatureSettings {
252
258
  /** 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
259
  splitHealthChecks?: boolean;
@@ -400,7 +406,7 @@ declare namespace gapi.client {
400
406
  nextPageToken?: string;
401
407
  /** A list of operations that matches the specified filter in the request. */
402
408
  operations?: Operation[];
403
- /** Unordered list. Unreachable resources. Populated when the request sets ListOperationsRequest.return_partial_success and reads across collections e.g. when attempting to list all resources across all supported locations. */
409
+ /** Unordered list. Unreachable resources. Populated when the request sets ListOperationsRequest.return_partial_success and reads across collections. For example, when attempting to list all resources across all supported locations. */
404
410
  unreachable?: string[];
405
411
  }
406
412
  interface ListRuntimesResponse {
@@ -1738,7 +1744,7 @@ declare namespace gapi.client {
1738
1744
  prettyPrint?: boolean;
1739
1745
  /** 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. */
1740
1746
  quotaUser?: string;
1741
- /** When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when reading across collections e.g. when parent is set to "projects/example/locations/-".This field is not by default supported and will result in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or product specific documentation. */
1747
+ /** When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when reading across collections. For example, when parent is set to "projects/example/locations/-".This field is not supported by default and will result in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or product specific documentation. */
1742
1748
  returnPartialSuccess?: boolean;
1743
1749
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1744
1750
  upload_protocol?: string;
@@ -2013,6 +2019,72 @@ declare namespace gapi.client {
2013
2019
  /** Part of `name`. See documentation of `appsId`. */
2014
2020
  versionsId: string;
2015
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>;
2016
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. */
2017
2089
  get(request?: {
2018
2090
  /** V1 error format. */
@@ -3123,6 +3195,80 @@ declare namespace gapi.client {
3123
3195
  /** Part of `name`. See documentation of `projectsId`. */
3124
3196
  versionsId: string;
3125
3197
  }): Request<Operation>;
3198
+ /** Exports a user image to Artifact Registry. */
3199
+ exportAppImage(request: {
3200
+ /** V1 error format. */
3201
+ '$.xgafv'?: string;
3202
+ /** OAuth access token. */
3203
+ access_token?: string;
3204
+ /** Data format for response. */
3205
+ alt?: string;
3206
+ /** Part of `name`. See documentation of `projectsId`. */
3207
+ applicationsId: string;
3208
+ /** JSONP */
3209
+ callback?: string;
3210
+ /** Selector specifying which fields to include in a partial response. */
3211
+ fields?: string;
3212
+ /** 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. */
3213
+ key?: string;
3214
+ /** Part of `name`. See documentation of `projectsId`. */
3215
+ locationsId: string;
3216
+ /** OAuth 2.0 token for the current user. */
3217
+ oauth_token?: string;
3218
+ /** Returns response with indentations and line breaks. */
3219
+ prettyPrint?: boolean;
3220
+ /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
3221
+ projectsId: string;
3222
+ /** 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. */
3223
+ quotaUser?: string;
3224
+ /** Part of `name`. See documentation of `projectsId`. */
3225
+ servicesId: string;
3226
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3227
+ upload_protocol?: string;
3228
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3229
+ uploadType?: string;
3230
+ /** Part of `name`. See documentation of `projectsId`. */
3231
+ versionsId: string;
3232
+ /** Request body */
3233
+ resource: ExportAppImageRequest;
3234
+ }): Request<Operation>;
3235
+ exportAppImage(
3236
+ request: {
3237
+ /** V1 error format. */
3238
+ '$.xgafv'?: string;
3239
+ /** OAuth access token. */
3240
+ access_token?: string;
3241
+ /** Data format for response. */
3242
+ alt?: string;
3243
+ /** Part of `name`. See documentation of `projectsId`. */
3244
+ applicationsId: string;
3245
+ /** JSONP */
3246
+ callback?: string;
3247
+ /** Selector specifying which fields to include in a partial response. */
3248
+ fields?: string;
3249
+ /** 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. */
3250
+ key?: string;
3251
+ /** Part of `name`. See documentation of `projectsId`. */
3252
+ locationsId: string;
3253
+ /** OAuth 2.0 token for the current user. */
3254
+ oauth_token?: string;
3255
+ /** Returns response with indentations and line breaks. */
3256
+ prettyPrint?: boolean;
3257
+ /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
3258
+ projectsId: string;
3259
+ /** 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. */
3260
+ quotaUser?: string;
3261
+ /** Part of `name`. See documentation of `projectsId`. */
3262
+ servicesId: string;
3263
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3264
+ upload_protocol?: string;
3265
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3266
+ uploadType?: string;
3267
+ /** Part of `name`. See documentation of `projectsId`. */
3268
+ versionsId: string;
3269
+ },
3270
+ body: ExportAppImageRequest,
3271
+ ): Request<Operation>;
3126
3272
  /** 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) */
3127
3273
  patch(request: {
3128
3274
  /** V1 error format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1",
3
- "version": "0.2.20251111",
3
+ "version": "0.2.20251210",
4
4
  "description": "TypeScript typings for App Engine Admin API v1",
5
5
  "repository": {
6
6
  "type": "git",