@maxim_mazurok/gapi.client.appengine-v1beta 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 +150 -4
  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=v1beta
12
- // Revision: 20251111
12
+ // Revision: 20251210
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -272,6 +272,12 @@ declare namespace gapi.client {
272
272
  /** Static file content to be served for this error. */
273
273
  staticFile?: string;
274
274
  }
275
+ interface ExportAppImageRequest {
276
+ /** 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. */
277
+ destinationRepository?: string;
278
+ /** Optional. Optional: A service account to use for authenticating to Artifact Registry. */
279
+ serviceAccount?: string;
280
+ }
275
281
  interface FeatureSettings {
276
282
  /** 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. */
277
283
  splitHealthChecks?: boolean;
@@ -424,7 +430,7 @@ declare namespace gapi.client {
424
430
  nextPageToken?: string;
425
431
  /** A list of operations that matches the specified filter in the request. */
426
432
  operations?: Operation[];
427
- /** 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. */
433
+ /** 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. */
428
434
  unreachable?: string[];
429
435
  }
430
436
  interface ListRuntimesResponse {
@@ -1784,7 +1790,7 @@ declare namespace gapi.client {
1784
1790
  prettyPrint?: boolean;
1785
1791
  /** 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. */
1786
1792
  quotaUser?: string;
1787
- /** 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. */
1793
+ /** 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. */
1788
1794
  returnPartialSuccess?: boolean;
1789
1795
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1790
1796
  upload_protocol?: string;
@@ -2059,6 +2065,72 @@ declare namespace gapi.client {
2059
2065
  /** Part of `name`. See documentation of `appsId`. */
2060
2066
  versionsId: string;
2061
2067
  }): Request<Operation>;
2068
+ /** Exports a user image to Artifact Registry. */
2069
+ exportAppImage(request: {
2070
+ /** V1 error format. */
2071
+ '$.xgafv'?: string;
2072
+ /** OAuth access token. */
2073
+ access_token?: string;
2074
+ /** Data format for response. */
2075
+ alt?: string;
2076
+ /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
2077
+ appsId: string;
2078
+ /** JSONP */
2079
+ callback?: string;
2080
+ /** Selector specifying which fields to include in a partial response. */
2081
+ fields?: string;
2082
+ /** 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. */
2083
+ key?: string;
2084
+ /** OAuth 2.0 token for the current user. */
2085
+ oauth_token?: string;
2086
+ /** Returns response with indentations and line breaks. */
2087
+ prettyPrint?: boolean;
2088
+ /** 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. */
2089
+ quotaUser?: string;
2090
+ /** Part of `name`. See documentation of `appsId`. */
2091
+ servicesId: string;
2092
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2093
+ upload_protocol?: string;
2094
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2095
+ uploadType?: string;
2096
+ /** Part of `name`. See documentation of `appsId`. */
2097
+ versionsId: string;
2098
+ /** Request body */
2099
+ resource: ExportAppImageRequest;
2100
+ }): Request<Operation>;
2101
+ exportAppImage(
2102
+ request: {
2103
+ /** V1 error format. */
2104
+ '$.xgafv'?: string;
2105
+ /** OAuth access token. */
2106
+ access_token?: string;
2107
+ /** Data format for response. */
2108
+ alt?: string;
2109
+ /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
2110
+ appsId: string;
2111
+ /** JSONP */
2112
+ callback?: string;
2113
+ /** Selector specifying which fields to include in a partial response. */
2114
+ fields?: string;
2115
+ /** 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. */
2116
+ key?: string;
2117
+ /** OAuth 2.0 token for the current user. */
2118
+ oauth_token?: string;
2119
+ /** Returns response with indentations and line breaks. */
2120
+ prettyPrint?: boolean;
2121
+ /** 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. */
2122
+ quotaUser?: string;
2123
+ /** Part of `name`. See documentation of `appsId`. */
2124
+ servicesId: string;
2125
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2126
+ upload_protocol?: string;
2127
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2128
+ uploadType?: string;
2129
+ /** Part of `name`. See documentation of `appsId`. */
2130
+ versionsId: string;
2131
+ },
2132
+ body: ExportAppImageRequest,
2133
+ ): Request<Operation>;
2062
2134
  /** Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource. */
2063
2135
  get(request?: {
2064
2136
  /** V1 error format. */
@@ -3173,6 +3245,80 @@ declare namespace gapi.client {
3173
3245
  /** Part of `name`. See documentation of `projectsId`. */
3174
3246
  versionsId: string;
3175
3247
  }): Request<Operation>;
3248
+ /** Exports a user image to Artifact Registry. */
3249
+ exportAppImage(request: {
3250
+ /** V1 error format. */
3251
+ '$.xgafv'?: string;
3252
+ /** OAuth access token. */
3253
+ access_token?: string;
3254
+ /** Data format for response. */
3255
+ alt?: string;
3256
+ /** Part of `name`. See documentation of `projectsId`. */
3257
+ applicationsId: string;
3258
+ /** JSONP */
3259
+ callback?: string;
3260
+ /** Selector specifying which fields to include in a partial response. */
3261
+ fields?: string;
3262
+ /** 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. */
3263
+ key?: string;
3264
+ /** Part of `name`. See documentation of `projectsId`. */
3265
+ locationsId: string;
3266
+ /** OAuth 2.0 token for the current user. */
3267
+ oauth_token?: string;
3268
+ /** Returns response with indentations and line breaks. */
3269
+ prettyPrint?: boolean;
3270
+ /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
3271
+ projectsId: string;
3272
+ /** 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. */
3273
+ quotaUser?: string;
3274
+ /** Part of `name`. See documentation of `projectsId`. */
3275
+ servicesId: string;
3276
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3277
+ upload_protocol?: string;
3278
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3279
+ uploadType?: string;
3280
+ /** Part of `name`. See documentation of `projectsId`. */
3281
+ versionsId: string;
3282
+ /** Request body */
3283
+ resource: ExportAppImageRequest;
3284
+ }): Request<Operation>;
3285
+ exportAppImage(
3286
+ request: {
3287
+ /** V1 error format. */
3288
+ '$.xgafv'?: string;
3289
+ /** OAuth access token. */
3290
+ access_token?: string;
3291
+ /** Data format for response. */
3292
+ alt?: string;
3293
+ /** Part of `name`. See documentation of `projectsId`. */
3294
+ applicationsId: string;
3295
+ /** JSONP */
3296
+ callback?: string;
3297
+ /** Selector specifying which fields to include in a partial response. */
3298
+ fields?: string;
3299
+ /** 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. */
3300
+ key?: string;
3301
+ /** Part of `name`. See documentation of `projectsId`. */
3302
+ locationsId: string;
3303
+ /** OAuth 2.0 token for the current user. */
3304
+ oauth_token?: string;
3305
+ /** Returns response with indentations and line breaks. */
3306
+ prettyPrint?: boolean;
3307
+ /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
3308
+ projectsId: string;
3309
+ /** 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. */
3310
+ quotaUser?: string;
3311
+ /** Part of `name`. See documentation of `projectsId`. */
3312
+ servicesId: string;
3313
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3314
+ upload_protocol?: string;
3315
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3316
+ uploadType?: string;
3317
+ /** Part of `name`. See documentation of `projectsId`. */
3318
+ versionsId: string;
3319
+ },
3320
+ body: ExportAppImageRequest,
3321
+ ): Request<Operation>;
3176
3322
  /** 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/v1beta/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/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_idle_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automaticScaling.standard_scheduler_settings.max_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.min_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_cpu_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#StandardSchedulerSettings) automaticScaling.standard_scheduler_settings.target_throughput_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/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/v1beta/apps.services.versions#Version.FIELDS.serving_status) manual_scaling.instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#manualscaling)Flexible environment serving_status (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/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/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.max_total_instances (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cool_down_period_sec (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/apps.services.versions#Version.FIELDS.automatic_scaling) automatic_scaling.cpu_utilization.target_utilization (https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1beta/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/v1beta/apps.services.versions#manualscaling) */
3177
3323
  patch(request: {
3178
3324
  /** V1 error format. */
@@ -3504,7 +3650,7 @@ declare namespace gapi.client {
3504
3650
  projectsId: string;
3505
3651
  /** 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. */
3506
3652
  quotaUser?: string;
3507
- /** 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. */
3653
+ /** 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. */
3508
3654
  returnPartialSuccess?: boolean;
3509
3655
  /** Upload protocol for media (e.g. "raw", "multipart"). */
3510
3656
  upload_protocol?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1beta",
3
- "version": "0.2.20251111",
3
+ "version": "0.2.20251210",
4
4
  "description": "TypeScript typings for App Engine Admin API v1beta",
5
5
  "repository": {
6
6
  "type": "git",