@maxim_mazurok/gapi.client.appengine-v1beta 0.2.20260202 → 0.2.20260219
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 +1 -21
- 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:
|
|
12
|
+
// Revision: 20260219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -753,12 +753,6 @@ declare namespace gapi.client {
|
|
|
753
753
|
/** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
|
|
754
754
|
message?: string;
|
|
755
755
|
}
|
|
756
|
-
interface SubnetworkKey {
|
|
757
|
-
/** Project id (name not number) of the project that hosts the network */
|
|
758
|
-
hostProjectId?: string;
|
|
759
|
-
/** Short name of the subnetwork. e.g. SUBNET instead of projects/{PROJECT_NAME}/regions/{REGION}/subnetworks/{SUBNET} */
|
|
760
|
-
subnet?: string;
|
|
761
|
-
}
|
|
762
756
|
interface TrafficSplit {
|
|
763
757
|
/** Mapping from version IDs within the service to fractional (0.000, 1] allocations of traffic for that version. Each version can be specified only once, but some versions in the service may not have any traffic allocation. Services that have traffic allocated cannot be deleted until either the service is deleted or their traffic allocation is removed. Allocations must sum to 1. Up to two decimal place precision is supported for IP-based splits and up to three decimal places is supported for cookie-based splits. */
|
|
764
758
|
allocations?: {[P in string]: number};
|
|
@@ -878,8 +872,6 @@ declare namespace gapi.client {
|
|
|
878
872
|
vpcAccess?: VpcAccess;
|
|
879
873
|
/** Enables VPC connectivity for standard apps. */
|
|
880
874
|
vpcAccessConnector?: VpcAccessConnector;
|
|
881
|
-
/** Deprecated: Use vpc_access instead. Enables VPC egress connectivity for standard apps. */
|
|
882
|
-
vpcEgress?: VpcEgress;
|
|
883
875
|
/** The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. */
|
|
884
876
|
zones?: string[];
|
|
885
877
|
}
|
|
@@ -903,14 +895,6 @@ declare namespace gapi.client {
|
|
|
903
895
|
/** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
|
|
904
896
|
name?: string;
|
|
905
897
|
}
|
|
906
|
-
interface VpcEgress {
|
|
907
|
-
/** The egress setting for the subnetwork, controlling what traffic is diverted through it. */
|
|
908
|
-
egressSetting?: string;
|
|
909
|
-
/** The network tags to apply to the instance. */
|
|
910
|
-
networkTags?: VpcNetworkTag[];
|
|
911
|
-
/** The subnetwork key. */
|
|
912
|
-
subnetworkKey?: SubnetworkKey;
|
|
913
|
-
}
|
|
914
898
|
interface VpcNetworkInterface {
|
|
915
899
|
/** 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} */
|
|
916
900
|
network?: string;
|
|
@@ -919,10 +903,6 @@ declare namespace gapi.client {
|
|
|
919
903
|
/** Optional. The network tags that will be applied to this App Engine resource. */
|
|
920
904
|
tags?: string[];
|
|
921
905
|
}
|
|
922
|
-
interface VpcNetworkTag {
|
|
923
|
-
/** value for the tag name */
|
|
924
|
-
value?: string;
|
|
925
|
-
}
|
|
926
906
|
interface ZipInfo {
|
|
927
907
|
/** An estimate of the number of files in a zip for a zip deployment. If set, must be greater than or equal to the actual number of files. Used for optimizing performance; if not provided, deployment may be slow. */
|
|
928
908
|
filesCount?: number;
|