@maxim_mazurok/gapi.client.appengine-v1 0.0.20240218 → 0.0.20240311
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 +51 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240311
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -597,6 +597,8 @@ declare namespace gapi.client {
|
|
|
597
597
|
abuse?: string;
|
|
598
598
|
billing?: string;
|
|
599
599
|
dataGovernance?: string;
|
|
600
|
+
/** 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. */
|
|
601
|
+
serviceActivation?: string;
|
|
600
602
|
serviceManagement?: string;
|
|
601
603
|
}
|
|
602
604
|
interface RepairApplicationRequest {}
|
|
@@ -2531,7 +2533,55 @@ declare namespace gapi.client {
|
|
|
2531
2533
|
operations: OperationsResource;
|
|
2532
2534
|
services: ServicesResource;
|
|
2533
2535
|
}
|
|
2536
|
+
interface AuthorizedDomainsResource {
|
|
2537
|
+
/** Lists all domains the user is authorized to administer. */
|
|
2538
|
+
list(request?: {
|
|
2539
|
+
/** V1 error format. */
|
|
2540
|
+
'$.xgafv'?: string;
|
|
2541
|
+
/** OAuth access token. */
|
|
2542
|
+
access_token?: string;
|
|
2543
|
+
/** Data format for response. */
|
|
2544
|
+
alt?: string;
|
|
2545
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2546
|
+
applicationsId: string;
|
|
2547
|
+
/** JSONP */
|
|
2548
|
+
callback?: string;
|
|
2549
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2550
|
+
fields?: string;
|
|
2551
|
+
/** 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. */
|
|
2552
|
+
key?: string;
|
|
2553
|
+
/** Part of `parent`. See documentation of `projectsId`. */
|
|
2554
|
+
locationsId: string;
|
|
2555
|
+
/** OAuth 2.0 token for the current user. */
|
|
2556
|
+
oauth_token?: string;
|
|
2557
|
+
/** Maximum results to return per page. */
|
|
2558
|
+
pageSize?: number;
|
|
2559
|
+
/** Continuation token for fetching the next page of results. */
|
|
2560
|
+
pageToken?: string;
|
|
2561
|
+
/** Returns response with indentations and line breaks. */
|
|
2562
|
+
prettyPrint?: boolean;
|
|
2563
|
+
/** Part of `parent`. Name of the parent Application resource. Example: apps/myapp. */
|
|
2564
|
+
projectsId: string;
|
|
2565
|
+
/** 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. */
|
|
2566
|
+
quotaUser?: string;
|
|
2567
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2568
|
+
upload_protocol?: string;
|
|
2569
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2570
|
+
uploadType?: string;
|
|
2571
|
+
}): Request<ListAuthorizedDomainsResponse>;
|
|
2572
|
+
}
|
|
2573
|
+
interface ApplicationsResource {
|
|
2574
|
+
authorizedDomains: AuthorizedDomainsResource;
|
|
2575
|
+
}
|
|
2576
|
+
interface LocationsResource {
|
|
2577
|
+
applications: ApplicationsResource;
|
|
2578
|
+
}
|
|
2579
|
+
interface ProjectsResource {
|
|
2580
|
+
locations: LocationsResource;
|
|
2581
|
+
}
|
|
2534
2582
|
|
|
2535
2583
|
const apps: AppsResource;
|
|
2584
|
+
|
|
2585
|
+
const projects: ProjectsResource;
|
|
2536
2586
|
}
|
|
2537
2587
|
}
|