@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20250611 → 0.0.20250616
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 +71 -1
- 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: 20250616
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2867,6 +2867,76 @@ declare namespace gapi.client {
|
|
|
2867
2867
|
}): Request<ListAuthorizedDomainsResponse>;
|
|
2868
2868
|
}
|
|
2869
2869
|
interface DomainMappingsResource {
|
|
2870
|
+
/** Maps a domain to an application. A user must be authorized to administer a domain in order to map it to an application. For a list of available authorized domains, see AuthorizedDomains.ListAuthorizedDomains. */
|
|
2871
|
+
create(request: {
|
|
2872
|
+
/** V1 error format. */
|
|
2873
|
+
'$.xgafv'?: string;
|
|
2874
|
+
/** OAuth access token. */
|
|
2875
|
+
access_token?: string;
|
|
2876
|
+
/** Data format for response. */
|
|
2877
|
+
alt?: string;
|
|
2878
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2879
|
+
applicationsId: string;
|
|
2880
|
+
/** JSONP */
|
|
2881
|
+
callback?: string;
|
|
2882
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2883
|
+
fields?: string;
|
|
2884
|
+
/** 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. */
|
|
2885
|
+
key?: string;
|
|
2886
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2887
|
+
locationsId: string;
|
|
2888
|
+
/** OAuth 2.0 token for the current user. */
|
|
2889
|
+
oauth_token?: string;
|
|
2890
|
+
/** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
|
|
2891
|
+
overrideStrategy?: string;
|
|
2892
|
+
/** Returns response with indentations and line breaks. */
|
|
2893
|
+
prettyPrint?: boolean;
|
|
2894
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2895
|
+
projectsId: string;
|
|
2896
|
+
/** 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. */
|
|
2897
|
+
quotaUser?: string;
|
|
2898
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2899
|
+
upload_protocol?: string;
|
|
2900
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2901
|
+
uploadType?: string;
|
|
2902
|
+
/** Request body */
|
|
2903
|
+
resource: DomainMapping;
|
|
2904
|
+
}): Request<Operation>;
|
|
2905
|
+
create(
|
|
2906
|
+
request: {
|
|
2907
|
+
/** V1 error format. */
|
|
2908
|
+
'$.xgafv'?: string;
|
|
2909
|
+
/** OAuth access token. */
|
|
2910
|
+
access_token?: string;
|
|
2911
|
+
/** Data format for response. */
|
|
2912
|
+
alt?: string;
|
|
2913
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2914
|
+
applicationsId: string;
|
|
2915
|
+
/** JSONP */
|
|
2916
|
+
callback?: string;
|
|
2917
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2918
|
+
fields?: string;
|
|
2919
|
+
/** 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. */
|
|
2920
|
+
key?: string;
|
|
2921
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2922
|
+
locationsId: string;
|
|
2923
|
+
/** OAuth 2.0 token for the current user. */
|
|
2924
|
+
oauth_token?: string;
|
|
2925
|
+
/** Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected. */
|
|
2926
|
+
overrideStrategy?: string;
|
|
2927
|
+
/** Returns response with indentations and line breaks. */
|
|
2928
|
+
prettyPrint?: boolean;
|
|
2929
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2930
|
+
projectsId: string;
|
|
2931
|
+
/** 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. */
|
|
2932
|
+
quotaUser?: string;
|
|
2933
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2934
|
+
upload_protocol?: string;
|
|
2935
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2936
|
+
uploadType?: string;
|
|
2937
|
+
},
|
|
2938
|
+
body: DomainMapping,
|
|
2939
|
+
): Request<Operation>;
|
|
2870
2940
|
/** Gets the specified domain mapping. */
|
|
2871
2941
|
get(request?: {
|
|
2872
2942
|
/** V1 error format. */
|