@maxim_mazurok/gapi.client.composer-v1 0.0.20230906 → 0.0.20230927
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 +18 -1
- package/package.json +1 -1
- package/tests.ts +13 -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://composer.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230927
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -112,6 +112,9 @@ declare namespace gapi.client {
|
|
|
112
112
|
*/
|
|
113
113
|
name?:
|
|
114
114
|
string;
|
|
115
|
+
/** Output only. Reserved for future use. */
|
|
116
|
+
satisfiesPzs?:
|
|
117
|
+
boolean;
|
|
115
118
|
/** The current state of the environment. */
|
|
116
119
|
state?:
|
|
117
120
|
string;
|
|
@@ -724,6 +727,17 @@ declare namespace gapi.client {
|
|
|
724
727
|
// tslint:disable-next-line:no-empty-interface
|
|
725
728
|
interface StorageConfig {
|
|
726
729
|
}
|
|
730
|
+
interface TriggererResource {
|
|
731
|
+
/** Optional. The number of triggerers. */
|
|
732
|
+
count?:
|
|
733
|
+
number;
|
|
734
|
+
/** Optional. CPU request and limit for a single Airflow triggerer replica. */
|
|
735
|
+
cpu?:
|
|
736
|
+
number;
|
|
737
|
+
/** Optional. Memory (GB) request and limit for a single Airflow triggerer replica. */
|
|
738
|
+
memoryGb?:
|
|
739
|
+
number;
|
|
740
|
+
}
|
|
727
741
|
interface WebServerConfig {
|
|
728
742
|
/**
|
|
729
743
|
* Optional. Machine type on which Airflow web server is running. It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4 or composer-n1-webserver-8. If not specified,
|
|
@@ -769,6 +783,9 @@ declare namespace gapi.client {
|
|
|
769
783
|
/** Optional. Resources used by Airflow schedulers. */
|
|
770
784
|
scheduler?:
|
|
771
785
|
SchedulerResource;
|
|
786
|
+
/** Optional. Resources used by Airflow triggerers. */
|
|
787
|
+
triggerer?:
|
|
788
|
+
TriggererResource;
|
|
772
789
|
/** Optional. Resources used by Airflow web server. */
|
|
773
790
|
webServer?:
|
|
774
791
|
WebServerResource;
|
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: 20230927
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -141,6 +141,11 @@ gapi.load('client', async () => {
|
|
|
141
141
|
memoryGb: 42,
|
|
142
142
|
storageGb: 42,
|
|
143
143
|
},
|
|
144
|
+
triggerer: {
|
|
145
|
+
count: 42,
|
|
146
|
+
cpu: 42,
|
|
147
|
+
memoryGb: 42,
|
|
148
|
+
},
|
|
144
149
|
webServer: {
|
|
145
150
|
cpu: 42,
|
|
146
151
|
memoryGb: 42,
|
|
@@ -160,6 +165,7 @@ gapi.load('client', async () => {
|
|
|
160
165
|
A: "Test string"
|
|
161
166
|
},
|
|
162
167
|
name: "Test string",
|
|
168
|
+
satisfiesPzs: true,
|
|
163
169
|
state: "Test string",
|
|
164
170
|
storageConfig: {
|
|
165
171
|
},
|
|
@@ -322,6 +328,11 @@ gapi.load('client', async () => {
|
|
|
322
328
|
memoryGb: 42,
|
|
323
329
|
storageGb: 42,
|
|
324
330
|
},
|
|
331
|
+
triggerer: {
|
|
332
|
+
count: 42,
|
|
333
|
+
cpu: 42,
|
|
334
|
+
memoryGb: 42,
|
|
335
|
+
},
|
|
325
336
|
webServer: {
|
|
326
337
|
cpu: 42,
|
|
327
338
|
memoryGb: 42,
|
|
@@ -341,6 +352,7 @@ gapi.load('client', async () => {
|
|
|
341
352
|
A: "Test string"
|
|
342
353
|
},
|
|
343
354
|
name: "Test string",
|
|
355
|
+
satisfiesPzs: true,
|
|
344
356
|
state: "Test string",
|
|
345
357
|
storageConfig: {
|
|
346
358
|
},
|