@maxim_mazurok/gapi.client.appengine-v1beta 0.1.20250824 → 0.1.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 +136 -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
|
|
|
@@ -424,6 +424,8 @@ declare namespace gapi.client {
|
|
|
424
424
|
nextPageToken?: string;
|
|
425
425
|
/** A list of operations that matches the specified filter in the request. */
|
|
426
426
|
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. */
|
|
428
|
+
unreachable?: string[];
|
|
427
429
|
}
|
|
428
430
|
interface ListRuntimesResponse {
|
|
429
431
|
/** Continuation token for fetching the next page of results. */
|
|
@@ -749,6 +751,12 @@ declare namespace gapi.client {
|
|
|
749
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. */
|
|
750
752
|
message?: string;
|
|
751
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
|
+
}
|
|
752
760
|
interface TrafficSplit {
|
|
753
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. */
|
|
754
762
|
allocations?: {[P in string]: number};
|
|
@@ -864,6 +872,8 @@ declare namespace gapi.client {
|
|
|
864
872
|
vm?: boolean;
|
|
865
873
|
/** Enables VPC connectivity for standard apps. */
|
|
866
874
|
vpcAccessConnector?: VpcAccessConnector;
|
|
875
|
+
/** Enables VPC egress connectivity for standard apps. */
|
|
876
|
+
vpcEgress?: VpcEgress;
|
|
867
877
|
/** The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. */
|
|
868
878
|
zones?: string[];
|
|
869
879
|
}
|
|
@@ -881,6 +891,18 @@ declare namespace gapi.client {
|
|
|
881
891
|
/** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
|
|
882
892
|
name?: string;
|
|
883
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
|
+
}
|
|
884
906
|
interface ZipInfo {
|
|
885
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. */
|
|
886
908
|
filesCount?: number;
|
|
@@ -1678,7 +1700,7 @@ declare namespace gapi.client {
|
|
|
1678
1700
|
appsId: string;
|
|
1679
1701
|
/** JSONP */
|
|
1680
1702
|
callback?: string;
|
|
1681
|
-
/** Optional.
|
|
1703
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
1682
1704
|
extraLocationTypes?: string | string[];
|
|
1683
1705
|
/** Selector specifying which fields to include in a partial response. */
|
|
1684
1706
|
fields?: string;
|
|
@@ -1760,6 +1782,8 @@ declare namespace gapi.client {
|
|
|
1760
1782
|
prettyPrint?: boolean;
|
|
1761
1783
|
/** 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. */
|
|
1762
1784
|
quotaUser?: string;
|
|
1785
|
+
/** 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. */
|
|
1786
|
+
returnPartialSuccess?: boolean;
|
|
1763
1787
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1764
1788
|
upload_protocol?: string;
|
|
1765
1789
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -2935,6 +2959,39 @@ declare namespace gapi.client {
|
|
|
2935
2959
|
},
|
|
2936
2960
|
body: DomainMapping,
|
|
2937
2961
|
): Request<Operation>;
|
|
2962
|
+
/** Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource. */
|
|
2963
|
+
delete(request?: {
|
|
2964
|
+
/** V1 error format. */
|
|
2965
|
+
'$.xgafv'?: string;
|
|
2966
|
+
/** OAuth access token. */
|
|
2967
|
+
access_token?: string;
|
|
2968
|
+
/** Data format for response. */
|
|
2969
|
+
alt?: string;
|
|
2970
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2971
|
+
applicationsId: string;
|
|
2972
|
+
/** JSONP */
|
|
2973
|
+
callback?: string;
|
|
2974
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2975
|
+
domainMappingsId: string;
|
|
2976
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2977
|
+
fields?: string;
|
|
2978
|
+
/** 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. */
|
|
2979
|
+
key?: string;
|
|
2980
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2981
|
+
locationsId: string;
|
|
2982
|
+
/** OAuth 2.0 token for the current user. */
|
|
2983
|
+
oauth_token?: string;
|
|
2984
|
+
/** Returns response with indentations and line breaks. */
|
|
2985
|
+
prettyPrint?: boolean;
|
|
2986
|
+
/** Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/domainMappings/example.com. */
|
|
2987
|
+
projectsId: string;
|
|
2988
|
+
/** 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. */
|
|
2989
|
+
quotaUser?: string;
|
|
2990
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2991
|
+
upload_protocol?: string;
|
|
2992
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2993
|
+
uploadType?: string;
|
|
2994
|
+
}): Request<Operation>;
|
|
2938
2995
|
/** Gets the specified domain mapping. */
|
|
2939
2996
|
get(request?: {
|
|
2940
2997
|
/** V1 error format. */
|
|
@@ -2968,6 +3025,80 @@ declare namespace gapi.client {
|
|
|
2968
3025
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2969
3026
|
uploadType?: string;
|
|
2970
3027
|
}): Request<DomainMapping>;
|
|
3028
|
+
/** Updates the specified domain mapping. To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized to administer the associated domain in order to update a DomainMapping resource. */
|
|
3029
|
+
patch(request: {
|
|
3030
|
+
/** V1 error format. */
|
|
3031
|
+
'$.xgafv'?: string;
|
|
3032
|
+
/** OAuth access token. */
|
|
3033
|
+
access_token?: string;
|
|
3034
|
+
/** Data format for response. */
|
|
3035
|
+
alt?: string;
|
|
3036
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3037
|
+
applicationsId: string;
|
|
3038
|
+
/** JSONP */
|
|
3039
|
+
callback?: string;
|
|
3040
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3041
|
+
domainMappingsId: string;
|
|
3042
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3043
|
+
fields?: string;
|
|
3044
|
+
/** 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. */
|
|
3045
|
+
key?: string;
|
|
3046
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3047
|
+
locationsId: string;
|
|
3048
|
+
/** OAuth 2.0 token for the current user. */
|
|
3049
|
+
oauth_token?: string;
|
|
3050
|
+
/** Returns response with indentations and line breaks. */
|
|
3051
|
+
prettyPrint?: boolean;
|
|
3052
|
+
/** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
3053
|
+
projectsId: string;
|
|
3054
|
+
/** 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. */
|
|
3055
|
+
quotaUser?: string;
|
|
3056
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3057
|
+
updateMask?: string;
|
|
3058
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3059
|
+
upload_protocol?: string;
|
|
3060
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3061
|
+
uploadType?: string;
|
|
3062
|
+
/** Request body */
|
|
3063
|
+
resource: DomainMapping;
|
|
3064
|
+
}): Request<Operation>;
|
|
3065
|
+
patch(
|
|
3066
|
+
request: {
|
|
3067
|
+
/** V1 error format. */
|
|
3068
|
+
'$.xgafv'?: string;
|
|
3069
|
+
/** OAuth access token. */
|
|
3070
|
+
access_token?: string;
|
|
3071
|
+
/** Data format for response. */
|
|
3072
|
+
alt?: string;
|
|
3073
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3074
|
+
applicationsId: string;
|
|
3075
|
+
/** JSONP */
|
|
3076
|
+
callback?: string;
|
|
3077
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3078
|
+
domainMappingsId: string;
|
|
3079
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3080
|
+
fields?: string;
|
|
3081
|
+
/** 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. */
|
|
3082
|
+
key?: string;
|
|
3083
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3084
|
+
locationsId: string;
|
|
3085
|
+
/** OAuth 2.0 token for the current user. */
|
|
3086
|
+
oauth_token?: string;
|
|
3087
|
+
/** Returns response with indentations and line breaks. */
|
|
3088
|
+
prettyPrint?: boolean;
|
|
3089
|
+
/** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
3090
|
+
projectsId: string;
|
|
3091
|
+
/** 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. */
|
|
3092
|
+
quotaUser?: string;
|
|
3093
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3094
|
+
updateMask?: string;
|
|
3095
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3096
|
+
upload_protocol?: string;
|
|
3097
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3098
|
+
uploadType?: string;
|
|
3099
|
+
},
|
|
3100
|
+
body: DomainMapping,
|
|
3101
|
+
): Request<Operation>;
|
|
2971
3102
|
}
|
|
2972
3103
|
interface VersionsResource {
|
|
2973
3104
|
/** Deletes an existing Version resource. */
|
|
@@ -3336,6 +3467,8 @@ declare namespace gapi.client {
|
|
|
3336
3467
|
projectsId: string;
|
|
3337
3468
|
/** 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. */
|
|
3338
3469
|
quotaUser?: string;
|
|
3470
|
+
/** 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. */
|
|
3471
|
+
returnPartialSuccess?: boolean;
|
|
3339
3472
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3340
3473
|
upload_protocol?: string;
|
|
3341
3474
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -3382,7 +3515,7 @@ declare namespace gapi.client {
|
|
|
3382
3515
|
alt?: string;
|
|
3383
3516
|
/** JSONP */
|
|
3384
3517
|
callback?: string;
|
|
3385
|
-
/** Optional.
|
|
3518
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
3386
3519
|
extraLocationTypes?: string | string[];
|
|
3387
3520
|
/** Selector specifying which fields to include in a partial response. */
|
|
3388
3521
|
fields?: string;
|