@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20230109 → 0.0.20230123
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 +9 -1
- package/package.json +1 -1
- package/tests.ts +9 -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: 20230123
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -340,6 +340,12 @@ declare namespace gapi.client {
|
|
|
340
340
|
*/
|
|
341
341
|
sourceRange?: string;
|
|
342
342
|
}
|
|
343
|
+
interface FlexibleRuntimeSettings {
|
|
344
|
+
/** The operating system of the application runtime. */
|
|
345
|
+
operatingSystem?: string;
|
|
346
|
+
/** The runtime version of an App Engine flexible application. */
|
|
347
|
+
runtimeVersion?: string;
|
|
348
|
+
}
|
|
343
349
|
interface GoogleAppengineV1betaLocationMetadata {
|
|
344
350
|
/** App Engine flexible environment is available in the given location.@OutputOnly */
|
|
345
351
|
flexibleEnvironmentAvailable?: boolean;
|
|
@@ -889,6 +895,8 @@ declare namespace gapi.client {
|
|
|
889
895
|
envVariables?: { [P in string]: string };
|
|
890
896
|
/** Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set. */
|
|
891
897
|
errorHandlers?: ErrorHandler[];
|
|
898
|
+
/** Settings for App Engine flexible runtimes. */
|
|
899
|
+
flexibleRuntimeSettings?: FlexibleRuntimeSettings;
|
|
892
900
|
/**
|
|
893
901
|
* 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
|
|
894
902
|
* returned in GET requests if view=FULL is set.
|
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: 20230123
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -499,6 +499,10 @@ gapi.load('client', async () => {
|
|
|
499
499
|
staticFile: "Test string",
|
|
500
500
|
}
|
|
501
501
|
],
|
|
502
|
+
flexibleRuntimeSettings: {
|
|
503
|
+
operatingSystem: "Test string",
|
|
504
|
+
runtimeVersion: "Test string",
|
|
505
|
+
},
|
|
502
506
|
handlers: [
|
|
503
507
|
{
|
|
504
508
|
apiEndpoint: {
|
|
@@ -767,6 +771,10 @@ gapi.load('client', async () => {
|
|
|
767
771
|
staticFile: "Test string",
|
|
768
772
|
}
|
|
769
773
|
],
|
|
774
|
+
flexibleRuntimeSettings: {
|
|
775
|
+
operatingSystem: "Test string",
|
|
776
|
+
runtimeVersion: "Test string",
|
|
777
|
+
},
|
|
770
778
|
handlers: [
|
|
771
779
|
{
|
|
772
780
|
apiEndpoint: {
|