@maxim_mazurok/gapi.client.appengine-v1 0.1.20250816 → 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 +113 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250930
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -400,6 +400,8 @@ declare namespace gapi.client {
|
|
|
400
400
|
nextPageToken?: string;
|
|
401
401
|
/** A list of operations that matches the specified filter in the request. */
|
|
402
402
|
operations?: Operation[];
|
|
403
|
+
/** 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. */
|
|
404
|
+
unreachable?: string[];
|
|
403
405
|
}
|
|
404
406
|
interface ListRuntimesResponse {
|
|
405
407
|
/** Continuation token for fetching the next page of results. */
|
|
@@ -1654,7 +1656,7 @@ declare namespace gapi.client {
|
|
|
1654
1656
|
appsId: string;
|
|
1655
1657
|
/** JSONP */
|
|
1656
1658
|
callback?: string;
|
|
1657
|
-
/** Optional.
|
|
1659
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
1658
1660
|
extraLocationTypes?: string | string[];
|
|
1659
1661
|
/** Selector specifying which fields to include in a partial response. */
|
|
1660
1662
|
fields?: string;
|
|
@@ -1736,6 +1738,8 @@ declare namespace gapi.client {
|
|
|
1736
1738
|
prettyPrint?: boolean;
|
|
1737
1739
|
/** 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. */
|
|
1738
1740
|
quotaUser?: string;
|
|
1741
|
+
/** 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. */
|
|
1742
|
+
returnPartialSuccess?: boolean;
|
|
1739
1743
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1740
1744
|
upload_protocol?: string;
|
|
1741
1745
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -2907,6 +2911,39 @@ declare namespace gapi.client {
|
|
|
2907
2911
|
},
|
|
2908
2912
|
body: DomainMapping,
|
|
2909
2913
|
): Request<Operation>;
|
|
2914
|
+
/** Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource. */
|
|
2915
|
+
delete(request?: {
|
|
2916
|
+
/** V1 error format. */
|
|
2917
|
+
'$.xgafv'?: string;
|
|
2918
|
+
/** OAuth access token. */
|
|
2919
|
+
access_token?: string;
|
|
2920
|
+
/** Data format for response. */
|
|
2921
|
+
alt?: string;
|
|
2922
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2923
|
+
applicationsId: string;
|
|
2924
|
+
/** JSONP */
|
|
2925
|
+
callback?: string;
|
|
2926
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2927
|
+
domainMappingsId: string;
|
|
2928
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2929
|
+
fields?: string;
|
|
2930
|
+
/** 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. */
|
|
2931
|
+
key?: string;
|
|
2932
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2933
|
+
locationsId: string;
|
|
2934
|
+
/** OAuth 2.0 token for the current user. */
|
|
2935
|
+
oauth_token?: string;
|
|
2936
|
+
/** Returns response with indentations and line breaks. */
|
|
2937
|
+
prettyPrint?: boolean;
|
|
2938
|
+
/** Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/domainMappings/example.com. */
|
|
2939
|
+
projectsId: string;
|
|
2940
|
+
/** 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. */
|
|
2941
|
+
quotaUser?: string;
|
|
2942
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2943
|
+
upload_protocol?: string;
|
|
2944
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2945
|
+
uploadType?: string;
|
|
2946
|
+
}): Request<Operation>;
|
|
2910
2947
|
/** Gets the specified domain mapping. */
|
|
2911
2948
|
get(request?: {
|
|
2912
2949
|
/** V1 error format. */
|
|
@@ -2940,6 +2977,80 @@ declare namespace gapi.client {
|
|
|
2940
2977
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2941
2978
|
uploadType?: string;
|
|
2942
2979
|
}): Request<DomainMapping>;
|
|
2980
|
+
/** 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. */
|
|
2981
|
+
patch(request: {
|
|
2982
|
+
/** V1 error format. */
|
|
2983
|
+
'$.xgafv'?: string;
|
|
2984
|
+
/** OAuth access token. */
|
|
2985
|
+
access_token?: string;
|
|
2986
|
+
/** Data format for response. */
|
|
2987
|
+
alt?: string;
|
|
2988
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2989
|
+
applicationsId: string;
|
|
2990
|
+
/** JSONP */
|
|
2991
|
+
callback?: string;
|
|
2992
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2993
|
+
domainMappingsId: string;
|
|
2994
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2995
|
+
fields?: string;
|
|
2996
|
+
/** 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. */
|
|
2997
|
+
key?: string;
|
|
2998
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
2999
|
+
locationsId: string;
|
|
3000
|
+
/** OAuth 2.0 token for the current user. */
|
|
3001
|
+
oauth_token?: string;
|
|
3002
|
+
/** Returns response with indentations and line breaks. */
|
|
3003
|
+
prettyPrint?: boolean;
|
|
3004
|
+
/** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
3005
|
+
projectsId: string;
|
|
3006
|
+
/** 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. */
|
|
3007
|
+
quotaUser?: string;
|
|
3008
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3009
|
+
updateMask?: string;
|
|
3010
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3011
|
+
upload_protocol?: string;
|
|
3012
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3013
|
+
uploadType?: string;
|
|
3014
|
+
/** Request body */
|
|
3015
|
+
resource: DomainMapping;
|
|
3016
|
+
}): Request<Operation>;
|
|
3017
|
+
patch(
|
|
3018
|
+
request: {
|
|
3019
|
+
/** V1 error format. */
|
|
3020
|
+
'$.xgafv'?: string;
|
|
3021
|
+
/** OAuth access token. */
|
|
3022
|
+
access_token?: string;
|
|
3023
|
+
/** Data format for response. */
|
|
3024
|
+
alt?: string;
|
|
3025
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3026
|
+
applicationsId: string;
|
|
3027
|
+
/** JSONP */
|
|
3028
|
+
callback?: string;
|
|
3029
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3030
|
+
domainMappingsId: string;
|
|
3031
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3032
|
+
fields?: string;
|
|
3033
|
+
/** 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. */
|
|
3034
|
+
key?: string;
|
|
3035
|
+
/** Part of `name`. See documentation of `projectsId`. */
|
|
3036
|
+
locationsId: string;
|
|
3037
|
+
/** OAuth 2.0 token for the current user. */
|
|
3038
|
+
oauth_token?: string;
|
|
3039
|
+
/** Returns response with indentations and line breaks. */
|
|
3040
|
+
prettyPrint?: boolean;
|
|
3041
|
+
/** Part of `name`. Required. Name of the resource to update. Example: apps/myapp/domainMappings/example.com. */
|
|
3042
|
+
projectsId: string;
|
|
3043
|
+
/** 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. */
|
|
3044
|
+
quotaUser?: string;
|
|
3045
|
+
/** Required. Standard field mask for the set of fields to be updated. */
|
|
3046
|
+
updateMask?: string;
|
|
3047
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3048
|
+
upload_protocol?: string;
|
|
3049
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3050
|
+
uploadType?: string;
|
|
3051
|
+
},
|
|
3052
|
+
body: DomainMapping,
|
|
3053
|
+
): Request<Operation>;
|
|
2943
3054
|
}
|
|
2944
3055
|
interface VersionsResource {
|
|
2945
3056
|
/** Deletes an existing Version resource. */
|