@maxim_mazurok/gapi.client.appengine-v1beta 0.1.20250824 → 0.1.20250930
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 +116 -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: 20250930
|
|
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. */
|
|
@@ -1678,7 +1680,7 @@ declare namespace gapi.client {
|
|
|
1678
1680
|
appsId: string;
|
|
1679
1681
|
/** JSONP */
|
|
1680
1682
|
callback?: string;
|
|
1681
|
-
/** Optional.
|
|
1683
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
1682
1684
|
extraLocationTypes?: string | string[];
|
|
1683
1685
|
/** Selector specifying which fields to include in a partial response. */
|
|
1684
1686
|
fields?: string;
|
|
@@ -1760,6 +1762,8 @@ declare namespace gapi.client {
|
|
|
1760
1762
|
prettyPrint?: boolean;
|
|
1761
1763
|
/** 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
1764
|
quotaUser?: string;
|
|
1765
|
+
/** 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. */
|
|
1766
|
+
returnPartialSuccess?: boolean;
|
|
1763
1767
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1764
1768
|
upload_protocol?: string;
|
|
1765
1769
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -2935,6 +2939,39 @@ declare namespace gapi.client {
|
|
|
2935
2939
|
},
|
|
2936
2940
|
body: DomainMapping,
|
|
2937
2941
|
): Request<Operation>;
|
|
2942
|
+
/** Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource. */
|
|
2943
|
+
delete(request?: {
|
|
2944
|
+
/** V1 error format. */
|
|
2945
|
+
'$.xgafv'?: string;
|
|
2946
|
+
/** OAuth access token. */
|
|
2947
|
+
access_token?: string;
|
|
2948
|
+
/** Data format for response. */
|
|
2949
|
+
alt?: string;
|
|
2950
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2951
|
+
applicationsId: string;
|
|
2952
|
+
/** JSONP */
|
|
2953
|
+
callback?: string;
|
|
2954
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2955
|
+
domainMappingsId: string;
|
|
2956
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2957
|
+
fields?: string;
|
|
2958
|
+
/** 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. */
|
|
2959
|
+
key?: string;
|
|
2960
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2961
|
+
locationsId: string;
|
|
2962
|
+
/** OAuth 2.0 token for the current user. */
|
|
2963
|
+
oauth_token?: string;
|
|
2964
|
+
/** Returns response with indentations and line breaks. */
|
|
2965
|
+
prettyPrint?: boolean;
|
|
2966
|
+
/** Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/domainMappings/example.com. */
|
|
2967
|
+
projectsId: string;
|
|
2968
|
+
/** 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. */
|
|
2969
|
+
quotaUser?: string;
|
|
2970
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2971
|
+
upload_protocol?: string;
|
|
2972
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2973
|
+
uploadType?: string;
|
|
2974
|
+
}): Request<Operation>;
|
|
2938
2975
|
/** Gets the specified domain mapping. */
|
|
2939
2976
|
get(request?: {
|
|
2940
2977
|
/** V1 error format. */
|
|
@@ -2968,6 +3005,80 @@ declare namespace gapi.client {
|
|
|
2968
3005
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2969
3006
|
uploadType?: string;
|
|
2970
3007
|
}): Request<DomainMapping>;
|
|
3008
|
+
/** 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. */
|
|
3009
|
+
patch(request: {
|
|
3010
|
+
/** V1 error format. */
|
|
3011
|
+
'$.xgafv'?: string;
|
|
3012
|
+
/** OAuth access token. */
|
|
3013
|
+
access_token?: string;
|
|
3014
|
+
/** Data format for response. */
|
|
3015
|
+
alt?: string;
|
|
3016
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3017
|
+
applicationsId: string;
|
|
3018
|
+
/** JSONP */
|
|
3019
|
+
callback?: string;
|
|
3020
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3021
|
+
domainMappingsId: string;
|
|
3022
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3023
|
+
fields?: string;
|
|
3024
|
+
/** 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. */
|
|
3025
|
+
key?: string;
|
|
3026
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3027
|
+
locationsId: string;
|
|
3028
|
+
/** OAuth 2.0 token for the current user. */
|
|
3029
|
+
oauth_token?: string;
|
|
3030
|
+
/** Returns response with indentations and line breaks. */
|
|
3031
|
+
prettyPrint?: boolean;
|
|
3032
|
+
/** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
3033
|
+
projectsId: string;
|
|
3034
|
+
/** 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. */
|
|
3035
|
+
quotaUser?: string;
|
|
3036
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3037
|
+
updateMask?: string;
|
|
3038
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3039
|
+
upload_protocol?: string;
|
|
3040
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3041
|
+
uploadType?: string;
|
|
3042
|
+
/** Request body */
|
|
3043
|
+
resource: DomainMapping;
|
|
3044
|
+
}): Request<Operation>;
|
|
3045
|
+
patch(
|
|
3046
|
+
request: {
|
|
3047
|
+
/** V1 error format. */
|
|
3048
|
+
'$.xgafv'?: string;
|
|
3049
|
+
/** OAuth access token. */
|
|
3050
|
+
access_token?: string;
|
|
3051
|
+
/** Data format for response. */
|
|
3052
|
+
alt?: string;
|
|
3053
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3054
|
+
applicationsId: string;
|
|
3055
|
+
/** JSONP */
|
|
3056
|
+
callback?: string;
|
|
3057
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3058
|
+
domainMappingsId: string;
|
|
3059
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3060
|
+
fields?: string;
|
|
3061
|
+
/** 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. */
|
|
3062
|
+
key?: string;
|
|
3063
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3064
|
+
locationsId: string;
|
|
3065
|
+
/** OAuth 2.0 token for the current user. */
|
|
3066
|
+
oauth_token?: string;
|
|
3067
|
+
/** Returns response with indentations and line breaks. */
|
|
3068
|
+
prettyPrint?: boolean;
|
|
3069
|
+
/** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
3070
|
+
projectsId: string;
|
|
3071
|
+
/** 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. */
|
|
3072
|
+
quotaUser?: string;
|
|
3073
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3074
|
+
updateMask?: string;
|
|
3075
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3076
|
+
upload_protocol?: string;
|
|
3077
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3078
|
+
uploadType?: string;
|
|
3079
|
+
},
|
|
3080
|
+
body: DomainMapping,
|
|
3081
|
+
): Request<Operation>;
|
|
2971
3082
|
}
|
|
2972
3083
|
interface VersionsResource {
|
|
2973
3084
|
/** Deletes an existing Version resource. */
|
|
@@ -3336,6 +3447,8 @@ declare namespace gapi.client {
|
|
|
3336
3447
|
projectsId: string;
|
|
3337
3448
|
/** 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
3449
|
quotaUser?: string;
|
|
3450
|
+
/** 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. */
|
|
3451
|
+
returnPartialSuccess?: boolean;
|
|
3339
3452
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3340
3453
|
upload_protocol?: string;
|
|
3341
3454
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -3382,7 +3495,7 @@ declare namespace gapi.client {
|
|
|
3382
3495
|
alt?: string;
|
|
3383
3496
|
/** JSONP */
|
|
3384
3497
|
callback?: string;
|
|
3385
|
-
/** Optional.
|
|
3498
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
3386
3499
|
extraLocationTypes?: string | string[];
|
|
3387
3500
|
/** Selector specifying which fields to include in a partial response. */
|
|
3388
3501
|
fields?: string;
|