@maxim_mazurok/gapi.client.appengine-v1beta 0.2.20251210 → 0.2.20260112

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 +67 -116
  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: 20251210
12
+ // Revision: 20260112
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -272,12 +272,6 @@ 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
- }
281
275
  interface FeatureSettings {
282
276
  /** 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. */
283
277
  splitHealthChecks?: boolean;
@@ -878,9 +872,11 @@ declare namespace gapi.client {
878
872
  versionUrl?: string;
879
873
  /** Whether to deploy this version in a container on a virtual machine. */
880
874
  vm?: boolean;
875
+ /** Enables VPC access connectivity for standard apps. */
876
+ vpcAccess?: VpcAccess;
881
877
  /** Enables VPC connectivity for standard apps. */
882
878
  vpcAccessConnector?: VpcAccessConnector;
883
- /** Enables VPC egress connectivity for standard apps. */
879
+ /** Deprecated: Use vpc_access instead. Enables VPC egress connectivity for standard apps. */
884
880
  vpcEgress?: VpcEgress;
885
881
  /** The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. */
886
882
  zones?: string[];
@@ -893,6 +889,12 @@ declare namespace gapi.client {
893
889
  /** Underlying volume type, e.g. 'tmpfs'. */
894
890
  volumeType?: string;
895
891
  }
892
+ interface VpcAccess {
893
+ /** The Direct VPC configuration. Currently only single network interface is supported. */
894
+ networkInterfaces?: VpcNetworkInterface[];
895
+ /** The traffic egress setting for the VPC network interface, controlling what traffic is diverted through it. */
896
+ vpcEgress?: string;
897
+ }
896
898
  interface VpcAccessConnector {
897
899
  /** The egress setting for the connector, controlling what traffic is diverted through it. */
898
900
  egressSetting?: string;
@@ -907,6 +909,14 @@ declare namespace gapi.client {
907
909
  /** The subnetwork key. */
908
910
  subnetworkKey?: SubnetworkKey;
909
911
  }
912
+ interface VpcNetworkInterface {
913
+ /** Optional. The VPC network that the App Engine resource will be able to send traffic to. At least one of network or subnetwork must be specified. If both network and subnetwork are specified, the given VPC subnetwork must belong to the given VPC network. If network is not specified, it will be looked up from the subnetwork. Could be either a short name or a full path. e.g. {VPC_NETWORK} or projects/{HOST_PROJECT_ID}/global/networks/{VPC_NETWORK} */
914
+ network?: string;
915
+ /** Optional. The VPC subnetwork that the App Engine resource will get IPs from. At least one of network or subnetwork must be specified. If both network and subnetwork are specified, the given VPC subnetwork must belong to the given VPC network. If subnetwork is not specified, the subnetwork with the same name with the network will be used. Could be either a short name or a full path. e.g. {SUBNET_NAME} or projects/{HOST_PROJECT_ID}/regions/{REGION}/subnetworks/{SUBNET_NAME} */
916
+ subnet?: string;
917
+ /** Optional. The network tags that will be applied to this App Engine resource. */
918
+ tags?: string[];
919
+ }
910
920
  interface VpcNetworkTag {
911
921
  /** value for the tag name */
912
922
  value?: string;
@@ -2065,72 +2075,6 @@ declare namespace gapi.client {
2065
2075
  /** Part of `name`. See documentation of `appsId`. */
2066
2076
  versionsId: string;
2067
2077
  }): 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>;
2134
2078
  /** Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource. */
2135
2079
  get(request?: {
2136
2080
  /** V1 error format. */
@@ -3209,9 +3153,9 @@ declare namespace gapi.client {
3209
3153
  body: DomainMapping,
3210
3154
  ): Request<Operation>;
3211
3155
  }
3212
- interface VersionsResource {
3213
- /** Deletes an existing Version resource. */
3214
- delete(request?: {
3156
+ interface InstancesResource {
3157
+ /** Enables debugging on a VM instance. This allows you to use the SSH command to connect to the virtual machine where the instance lives. While in "debug mode", the instance continues to serve live traffic. You should delete the instance when you are done debugging and then allow the system to take over and determine if another instance should be started.Only applicable for instances in App Engine flexible environment. */
3158
+ debug(request: {
3215
3159
  /** V1 error format. */
3216
3160
  '$.xgafv'?: string;
3217
3161
  /** OAuth access token. */
@@ -3224,41 +3168,8 @@ declare namespace gapi.client {
3224
3168
  callback?: string;
3225
3169
  /** Selector specifying which fields to include in a partial response. */
3226
3170
  fields?: string;
3227
- /** 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. */
3228
- key?: string;
3229
- /** Part of `name`. See documentation of `projectsId`. */
3230
- locationsId: string;
3231
- /** OAuth 2.0 token for the current user. */
3232
- oauth_token?: string;
3233
- /** Returns response with indentations and line breaks. */
3234
- prettyPrint?: boolean;
3235
- /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. */
3236
- projectsId: string;
3237
- /** 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. */
3238
- quotaUser?: string;
3239
3171
  /** Part of `name`. See documentation of `projectsId`. */
3240
- servicesId: string;
3241
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3242
- upload_protocol?: string;
3243
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3244
- uploadType?: string;
3245
- /** Part of `name`. See documentation of `projectsId`. */
3246
- versionsId: string;
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;
3172
+ instancesId: string;
3262
3173
  /** 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
3174
  key?: string;
3264
3175
  /** Part of `name`. See documentation of `projectsId`. */
@@ -3267,7 +3178,7 @@ declare namespace gapi.client {
3267
3178
  oauth_token?: string;
3268
3179
  /** Returns response with indentations and line breaks. */
3269
3180
  prettyPrint?: boolean;
3270
- /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
3181
+ /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
3271
3182
  projectsId: string;
3272
3183
  /** 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
3184
  quotaUser?: string;
@@ -3280,9 +3191,9 @@ declare namespace gapi.client {
3280
3191
  /** Part of `name`. See documentation of `projectsId`. */
3281
3192
  versionsId: string;
3282
3193
  /** Request body */
3283
- resource: ExportAppImageRequest;
3194
+ resource: DebugInstanceRequest;
3284
3195
  }): Request<Operation>;
3285
- exportAppImage(
3196
+ debug(
3286
3197
  request: {
3287
3198
  /** V1 error format. */
3288
3199
  '$.xgafv'?: string;
@@ -3296,6 +3207,8 @@ declare namespace gapi.client {
3296
3207
  callback?: string;
3297
3208
  /** Selector specifying which fields to include in a partial response. */
3298
3209
  fields?: string;
3210
+ /** Part of `name`. See documentation of `projectsId`. */
3211
+ instancesId: string;
3299
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. */
3300
3213
  key?: string;
3301
3214
  /** Part of `name`. See documentation of `projectsId`. */
@@ -3304,7 +3217,7 @@ declare namespace gapi.client {
3304
3217
  oauth_token?: string;
3305
3218
  /** Returns response with indentations and line breaks. */
3306
3219
  prettyPrint?: boolean;
3307
- /** Part of `name`. Required. Name of the App Engine version resource. Format: apps/{app}/services/{service}/versions/{version} */
3220
+ /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
3308
3221
  projectsId: string;
3309
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. */
3310
3223
  quotaUser?: string;
@@ -3317,8 +3230,45 @@ declare namespace gapi.client {
3317
3230
  /** Part of `name`. See documentation of `projectsId`. */
3318
3231
  versionsId: string;
3319
3232
  },
3320
- body: ExportAppImageRequest,
3233
+ body: DebugInstanceRequest,
3321
3234
  ): Request<Operation>;
3235
+ }
3236
+ interface VersionsResource {
3237
+ /** Deletes an existing Version resource. */
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
+ /** 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. */
3252
+ key?: string;
3253
+ /** Part of `name`. See documentation of `projectsId`. */
3254
+ locationsId: string;
3255
+ /** OAuth 2.0 token for the current user. */
3256
+ oauth_token?: string;
3257
+ /** Returns response with indentations and line breaks. */
3258
+ prettyPrint?: boolean;
3259
+ /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1. */
3260
+ projectsId: string;
3261
+ /** 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. */
3262
+ quotaUser?: string;
3263
+ /** Part of `name`. See documentation of `projectsId`. */
3264
+ servicesId: string;
3265
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3266
+ upload_protocol?: string;
3267
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3268
+ uploadType?: string;
3269
+ /** Part of `name`. See documentation of `projectsId`. */
3270
+ versionsId: string;
3271
+ }): Request<Operation>;
3322
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/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) */
3323
3273
  patch(request: {
3324
3274
  /** V1 error format. */
@@ -3397,6 +3347,7 @@ declare namespace gapi.client {
3397
3347
  },
3398
3348
  body: Version,
3399
3349
  ): Request<Operation>;
3350
+ instances: InstancesResource;
3400
3351
  }
3401
3352
  interface ServicesResource {
3402
3353
  /** Deletes the specified service and all enclosed versions. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1beta",
3
- "version": "0.2.20251210",
3
+ "version": "0.2.20260112",
4
4
  "description": "TypeScript typings for App Engine Admin API v1beta",
5
5
  "repository": {
6
6
  "type": "git",