@maxim_mazurok/gapi.client.appengine-v1beta 0.2.20260105 → 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 +99 -2
  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: 20260105
12
+ // Revision: 20260112
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -872,9 +872,11 @@ declare namespace gapi.client {
872
872
  versionUrl?: string;
873
873
  /** Whether to deploy this version in a container on a virtual machine. */
874
874
  vm?: boolean;
875
+ /** Enables VPC access connectivity for standard apps. */
876
+ vpcAccess?: VpcAccess;
875
877
  /** Enables VPC connectivity for standard apps. */
876
878
  vpcAccessConnector?: VpcAccessConnector;
877
- /** Enables VPC egress connectivity for standard apps. */
879
+ /** Deprecated: Use vpc_access instead. Enables VPC egress connectivity for standard apps. */
878
880
  vpcEgress?: VpcEgress;
879
881
  /** The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. */
880
882
  zones?: string[];
@@ -887,6 +889,12 @@ declare namespace gapi.client {
887
889
  /** Underlying volume type, e.g. 'tmpfs'. */
888
890
  volumeType?: string;
889
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
+ }
890
898
  interface VpcAccessConnector {
891
899
  /** The egress setting for the connector, controlling what traffic is diverted through it. */
892
900
  egressSetting?: string;
@@ -901,6 +909,14 @@ declare namespace gapi.client {
901
909
  /** The subnetwork key. */
902
910
  subnetworkKey?: SubnetworkKey;
903
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
+ }
904
920
  interface VpcNetworkTag {
905
921
  /** value for the tag name */
906
922
  value?: string;
@@ -3137,6 +3153,86 @@ declare namespace gapi.client {
3137
3153
  body: DomainMapping,
3138
3154
  ): Request<Operation>;
3139
3155
  }
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: {
3159
+ /** V1 error format. */
3160
+ '$.xgafv'?: string;
3161
+ /** OAuth access token. */
3162
+ access_token?: string;
3163
+ /** Data format for response. */
3164
+ alt?: string;
3165
+ /** Part of `name`. See documentation of `projectsId`. */
3166
+ applicationsId: string;
3167
+ /** JSONP */
3168
+ callback?: string;
3169
+ /** Selector specifying which fields to include in a partial response. */
3170
+ fields?: string;
3171
+ /** Part of `name`. See documentation of `projectsId`. */
3172
+ instancesId: string;
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. */
3174
+ key?: string;
3175
+ /** Part of `name`. See documentation of `projectsId`. */
3176
+ locationsId: string;
3177
+ /** OAuth 2.0 token for the current user. */
3178
+ oauth_token?: string;
3179
+ /** Returns response with indentations and line breaks. */
3180
+ prettyPrint?: boolean;
3181
+ /** Part of `name`. Required. Name of the resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
3182
+ projectsId: string;
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. */
3184
+ quotaUser?: string;
3185
+ /** Part of `name`. See documentation of `projectsId`. */
3186
+ servicesId: string;
3187
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3188
+ upload_protocol?: string;
3189
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3190
+ uploadType?: string;
3191
+ /** Part of `name`. See documentation of `projectsId`. */
3192
+ versionsId: string;
3193
+ /** Request body */
3194
+ resource: DebugInstanceRequest;
3195
+ }): Request<Operation>;
3196
+ debug(
3197
+ request: {
3198
+ /** V1 error format. */
3199
+ '$.xgafv'?: string;
3200
+ /** OAuth access token. */
3201
+ access_token?: string;
3202
+ /** Data format for response. */
3203
+ alt?: string;
3204
+ /** Part of `name`. See documentation of `projectsId`. */
3205
+ applicationsId: string;
3206
+ /** JSONP */
3207
+ callback?: string;
3208
+ /** Selector specifying which fields to include in a partial response. */
3209
+ fields?: string;
3210
+ /** Part of `name`. See documentation of `projectsId`. */
3211
+ instancesId: 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 resource requested. Example: apps/myapp/services/default/versions/v1/instances/instance-1. */
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
+ },
3233
+ body: DebugInstanceRequest,
3234
+ ): Request<Operation>;
3235
+ }
3140
3236
  interface VersionsResource {
3141
3237
  /** Deletes an existing Version resource. */
3142
3238
  delete(request?: {
@@ -3251,6 +3347,7 @@ declare namespace gapi.client {
3251
3347
  },
3252
3348
  body: Version,
3253
3349
  ): Request<Operation>;
3350
+ instances: InstancesResource;
3254
3351
  }
3255
3352
  interface ServicesResource {
3256
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.20260105",
3
+ "version": "0.2.20260112",
4
4
  "description": "TypeScript typings for App Engine Admin API v1beta",
5
5
  "repository": {
6
6
  "type": "git",