@maxim_mazurok/gapi.client.appengine-v1beta 0.1.20250930 → 0.2.20251005
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 +23 -3
- 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: 20251005
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -153,7 +153,7 @@ declare namespace gapi.client {
|
|
|
153
153
|
cloudBuildId?: string;
|
|
154
154
|
}
|
|
155
155
|
interface CertificateRawData {
|
|
156
|
-
/** Unencrypted PEM encoded RSA private key. This field is set once on certificate creation and then encrypted. The key size must be 2048 bits or fewer. Must include the header and footer. Example: -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY-----
|
|
156
|
+
/** Unencrypted PEM encoded RSA private key. This field is set once on certificate creation and then encrypted. The key size must be 2048 bits or fewer. Must include the header and footer. Example: -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY----- @InputOnly */
|
|
157
157
|
privateKey?: string;
|
|
158
158
|
/** PEM encoded x.509 public key certificate. This field is set once on certificate creation. Must include the header and footer. Example: -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- */
|
|
159
159
|
publicCertificate?: string;
|
|
@@ -336,7 +336,7 @@ declare namespace gapi.client {
|
|
|
336
336
|
enabled?: boolean;
|
|
337
337
|
/** OAuth2 client ID to use for the authentication flow. */
|
|
338
338
|
oauth2ClientId?: string;
|
|
339
|
-
/** OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field
|
|
339
|
+
/** OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly */
|
|
340
340
|
oauth2ClientSecret?: string;
|
|
341
341
|
/** Output only. Hex-encoded SHA-256 hash of the client secret.@OutputOnly */
|
|
342
342
|
oauth2ClientSecretSha256?: string;
|
|
@@ -751,6 +751,12 @@ declare namespace gapi.client {
|
|
|
751
751
|
/** 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. */
|
|
752
752
|
message?: string;
|
|
753
753
|
}
|
|
754
|
+
interface SubnetworkKey {
|
|
755
|
+
/** Project id (name not number) of the project that hosts the network */
|
|
756
|
+
hostProjectId?: string;
|
|
757
|
+
/** Short name of the subnetwork. e.g. SUBNET instead of projects/{PROJECT_NAME}/regions/{REGION}/subnetworks/{SUBNET} */
|
|
758
|
+
subnet?: string;
|
|
759
|
+
}
|
|
754
760
|
interface TrafficSplit {
|
|
755
761
|
/** 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. */
|
|
756
762
|
allocations?: {[P in string]: number};
|
|
@@ -866,6 +872,8 @@ declare namespace gapi.client {
|
|
|
866
872
|
vm?: boolean;
|
|
867
873
|
/** Enables VPC connectivity for standard apps. */
|
|
868
874
|
vpcAccessConnector?: VpcAccessConnector;
|
|
875
|
+
/** Enables VPC egress connectivity for standard apps. */
|
|
876
|
+
vpcEgress?: VpcEgress;
|
|
869
877
|
/** The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. */
|
|
870
878
|
zones?: string[];
|
|
871
879
|
}
|
|
@@ -883,6 +891,18 @@ declare namespace gapi.client {
|
|
|
883
891
|
/** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
|
|
884
892
|
name?: string;
|
|
885
893
|
}
|
|
894
|
+
interface VpcEgress {
|
|
895
|
+
/** The egress setting for the subnetwork, controlling what traffic is diverted through it. */
|
|
896
|
+
egressSetting?: string;
|
|
897
|
+
/** The network tags to apply to the instance. */
|
|
898
|
+
networkTags?: VpcNetworkTag[];
|
|
899
|
+
/** The subnetwork key. */
|
|
900
|
+
subnetworkKey?: SubnetworkKey;
|
|
901
|
+
}
|
|
902
|
+
interface VpcNetworkTag {
|
|
903
|
+
/** value for the tag name */
|
|
904
|
+
value?: string;
|
|
905
|
+
}
|
|
886
906
|
interface ZipInfo {
|
|
887
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. */
|
|
888
908
|
filesCount?: number;
|