@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20230831 → 0.0.20230918
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 +13 -1
- package/package.json +1 -1
- package/tests.ts +12 -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: 20230918
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1028,6 +1028,9 @@ declare namespace gapi.client {
|
|
|
1028
1028
|
string;
|
|
1029
1029
|
}
|
|
1030
1030
|
interface Service {
|
|
1031
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetServiceRequest */
|
|
1032
|
+
generatedCustomerMetadata?:
|
|
1033
|
+
{ [P in string]: any };
|
|
1031
1034
|
/** Relative name of the service within the application. Example: default.@OutputOnly */
|
|
1032
1035
|
id?:
|
|
1033
1036
|
string;
|
|
@@ -1239,6 +1242,9 @@ declare namespace gapi.client {
|
|
|
1239
1242
|
/** Settings for App Engine flexible runtimes. */
|
|
1240
1243
|
flexibleRuntimeSettings?:
|
|
1241
1244
|
FlexibleRuntimeSettings;
|
|
1245
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetVersionRequest */
|
|
1246
|
+
generatedCustomerMetadata?:
|
|
1247
|
+
{ [P in string]: any };
|
|
1242
1248
|
/**
|
|
1243
1249
|
* An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only
|
|
1244
1250
|
* returned in GET requests if view=FULL is set.
|
|
@@ -3082,6 +3088,9 @@ declare namespace gapi.client {
|
|
|
3082
3088
|
/** Selector specifying which fields to include in a partial response. */
|
|
3083
3089
|
fields?:
|
|
3084
3090
|
string;
|
|
3091
|
+
/** Optional. Options to include extra data */
|
|
3092
|
+
includeExtraData?:
|
|
3093
|
+
string;
|
|
3085
3094
|
/** 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. */
|
|
3086
3095
|
key?:
|
|
3087
3096
|
string;
|
|
@@ -3347,6 +3356,9 @@ declare namespace gapi.client {
|
|
|
3347
3356
|
/** Selector specifying which fields to include in a partial response. */
|
|
3348
3357
|
fields?:
|
|
3349
3358
|
string;
|
|
3359
|
+
/** Optional. Options to include extra data */
|
|
3360
|
+
includeExtraData?:
|
|
3361
|
+
string;
|
|
3350
3362
|
/** 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. */
|
|
3351
3363
|
key?:
|
|
3352
3364
|
string;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230918
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -360,6 +360,7 @@ gapi.load('client', async () => {
|
|
|
360
360
|
/** Gets the current configuration of the specified service. */
|
|
361
361
|
await gapi.client.appengine.apps.services.get({
|
|
362
362
|
appsId: "Test string",
|
|
363
|
+
includeExtraData: "Test string",
|
|
363
364
|
servicesId: "Test string",
|
|
364
365
|
});
|
|
365
366
|
/** Lists all the services in the application. */
|
|
@@ -375,6 +376,9 @@ gapi.load('client', async () => {
|
|
|
375
376
|
servicesId: "Test string",
|
|
376
377
|
updateMask: "Test string",
|
|
377
378
|
}, {
|
|
379
|
+
generatedCustomerMetadata: {
|
|
380
|
+
A: 42
|
|
381
|
+
},
|
|
378
382
|
id: "Test string",
|
|
379
383
|
labels: {
|
|
380
384
|
A: "Test string"
|
|
@@ -509,6 +513,9 @@ gapi.load('client', async () => {
|
|
|
509
513
|
operatingSystem: "Test string",
|
|
510
514
|
runtimeVersion: "Test string",
|
|
511
515
|
},
|
|
516
|
+
generatedCustomerMetadata: {
|
|
517
|
+
A: 42
|
|
518
|
+
},
|
|
512
519
|
handlers: [
|
|
513
520
|
{
|
|
514
521
|
apiEndpoint: {
|
|
@@ -627,6 +634,7 @@ gapi.load('client', async () => {
|
|
|
627
634
|
/** Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource. */
|
|
628
635
|
await gapi.client.appengine.apps.services.versions.get({
|
|
629
636
|
appsId: "Test string",
|
|
637
|
+
includeExtraData: "Test string",
|
|
630
638
|
servicesId: "Test string",
|
|
631
639
|
versionsId: "Test string",
|
|
632
640
|
view: "Test string",
|
|
@@ -781,6 +789,9 @@ gapi.load('client', async () => {
|
|
|
781
789
|
operatingSystem: "Test string",
|
|
782
790
|
runtimeVersion: "Test string",
|
|
783
791
|
},
|
|
792
|
+
generatedCustomerMetadata: {
|
|
793
|
+
A: 42
|
|
794
|
+
},
|
|
784
795
|
handlers: [
|
|
785
796
|
{
|
|
786
797
|
apiEndpoint: {
|