@maxim_mazurok/gapi.client.composer-v1 0.0.20230814 → 0.0.20230917
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 +24 -1
- package/package.json +1 -1
- package/tests.ts +17 -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: 20230917
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -112,9 +112,15 @@ 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;
|
|
121
|
+
/** Optional. Storage configuration for this environment. */
|
|
122
|
+
storageConfig?:
|
|
123
|
+
any;
|
|
118
124
|
/** Output only. The time at which this environment was last modified. */
|
|
119
125
|
updateTime?:
|
|
120
126
|
string;
|
|
@@ -718,6 +724,20 @@ declare namespace gapi.client {
|
|
|
718
724
|
output?:
|
|
719
725
|
string[];
|
|
720
726
|
}
|
|
727
|
+
// tslint:disable-next-line:no-empty-interface
|
|
728
|
+
interface StorageConfig {
|
|
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
|
+
}
|
|
721
741
|
interface WebServerConfig {
|
|
722
742
|
/**
|
|
723
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,
|
|
@@ -763,6 +783,9 @@ declare namespace gapi.client {
|
|
|
763
783
|
/** Optional. Resources used by Airflow schedulers. */
|
|
764
784
|
scheduler?:
|
|
765
785
|
SchedulerResource;
|
|
786
|
+
/** Optional. Resources used by Airflow triggerers. */
|
|
787
|
+
triggerer?:
|
|
788
|
+
TriggererResource;
|
|
766
789
|
/** Optional. Resources used by Airflow web server. */
|
|
767
790
|
webServer?:
|
|
768
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: 20230917
|
|
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,7 +165,10 @@ gapi.load('client', async () => {
|
|
|
160
165
|
A: "Test string"
|
|
161
166
|
},
|
|
162
167
|
name: "Test string",
|
|
168
|
+
satisfiesPzs: true,
|
|
163
169
|
state: "Test string",
|
|
170
|
+
storageConfig: {
|
|
171
|
+
},
|
|
164
172
|
updateTime: "Test string",
|
|
165
173
|
uuid: "Test string",
|
|
166
174
|
});
|
|
@@ -320,6 +328,11 @@ gapi.load('client', async () => {
|
|
|
320
328
|
memoryGb: 42,
|
|
321
329
|
storageGb: 42,
|
|
322
330
|
},
|
|
331
|
+
triggerer: {
|
|
332
|
+
count: 42,
|
|
333
|
+
cpu: 42,
|
|
334
|
+
memoryGb: 42,
|
|
335
|
+
},
|
|
323
336
|
webServer: {
|
|
324
337
|
cpu: 42,
|
|
325
338
|
memoryGb: 42,
|
|
@@ -339,7 +352,10 @@ gapi.load('client', async () => {
|
|
|
339
352
|
A: "Test string"
|
|
340
353
|
},
|
|
341
354
|
name: "Test string",
|
|
355
|
+
satisfiesPzs: true,
|
|
342
356
|
state: "Test string",
|
|
357
|
+
storageConfig: {
|
|
358
|
+
},
|
|
343
359
|
updateTime: "Test string",
|
|
344
360
|
uuid: "Test string",
|
|
345
361
|
});
|