@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20240218 → 0.0.20240226
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 +44 -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: 20240226
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -621,6 +621,8 @@ declare namespace gapi.client {
|
|
|
621
621
|
abuse?: string;
|
|
622
622
|
billing?: string;
|
|
623
623
|
dataGovernance?: string;
|
|
624
|
+
/** Consumer Container denotes if the service is active within a project or not. This information could be used to clean up resources in case service in DISABLED_FULL i.e. Service is inactive > 30 days. */
|
|
625
|
+
serviceActivation?: string;
|
|
624
626
|
serviceManagement?: string;
|
|
625
627
|
}
|
|
626
628
|
interface RepairApplicationRequest {}
|
|
@@ -2559,6 +2561,46 @@ declare namespace gapi.client {
|
|
|
2559
2561
|
operations: OperationsResource;
|
|
2560
2562
|
services: ServicesResource;
|
|
2561
2563
|
}
|
|
2564
|
+
interface AuthorizedDomainsResource {
|
|
2565
|
+
/** Lists all domains the user is authorized to administer. */
|
|
2566
|
+
list(request?: {
|
|
2567
|
+
/** V1 error format. */
|
|
2568
|
+
'$.xgafv'?: string;
|
|
2569
|
+
/** OAuth access token. */
|
|
2570
|
+
access_token?: string;
|
|
2571
|
+
/** Data format for response. */
|
|
2572
|
+
alt?: string;
|
|
2573
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2574
|
+
applicationsId: string;
|
|
2575
|
+
/** JSONP */
|
|
2576
|
+
callback?: string;
|
|
2577
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2578
|
+
fields?: string;
|
|
2579
|
+
/** 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. */
|
|
2580
|
+
key?: string;
|
|
2581
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2582
|
+
locationsId: string;
|
|
2583
|
+
/** OAuth 2.0 token for the current user. */
|
|
2584
|
+
oauth_token?: string;
|
|
2585
|
+
/** Maximum results to return per page. */
|
|
2586
|
+
pageSize?: number;
|
|
2587
|
+
/** Continuation token for fetching the next page of results. */
|
|
2588
|
+
pageToken?: string;
|
|
2589
|
+
/** Returns response with indentations and line breaks. */
|
|
2590
|
+
prettyPrint?: boolean;
|
|
2591
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2592
|
+
projectsId: string;
|
|
2593
|
+
/** 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. */
|
|
2594
|
+
quotaUser?: string;
|
|
2595
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2596
|
+
upload_protocol?: string;
|
|
2597
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2598
|
+
uploadType?: string;
|
|
2599
|
+
}): Request<ListAuthorizedDomainsResponse>;
|
|
2600
|
+
}
|
|
2601
|
+
interface ApplicationsResource {
|
|
2602
|
+
authorizedDomains: AuthorizedDomainsResource;
|
|
2603
|
+
}
|
|
2562
2604
|
interface OperationsResource {
|
|
2563
2605
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
2564
2606
|
get(request?: {
|
|
@@ -2690,6 +2732,7 @@ declare namespace gapi.client {
|
|
|
2690
2732
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2691
2733
|
uploadType?: string;
|
|
2692
2734
|
}): Request<ListLocationsResponse>;
|
|
2735
|
+
applications: ApplicationsResource;
|
|
2693
2736
|
operations: OperationsResource;
|
|
2694
2737
|
}
|
|
2695
2738
|
interface ProjectsResource {
|