@maxim_mazurok/gapi.client.composer-v1 0.0.20230927 → 0.0.20231004
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 +11 -3
- package/package.json +1 -1
- package/tests.ts +5 -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: 20231004
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -66,6 +66,12 @@ declare namespace gapi.client {
|
|
|
66
66
|
*/
|
|
67
67
|
machineType?:
|
|
68
68
|
string;
|
|
69
|
+
/**
|
|
70
|
+
* Optional. The Compute Engine zone where the Airflow database is created. If zone is provided, it must be in the region selected for the environment. If zone is not provided, a zone
|
|
71
|
+
* is automatically selected. The zone can only be set during environment creation. Supported for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.*.
|
|
72
|
+
*/
|
|
73
|
+
zone?:
|
|
74
|
+
string;
|
|
69
75
|
}
|
|
70
76
|
// tslint:disable-next-line:no-empty-interface
|
|
71
77
|
interface DatabaseFailoverRequest {
|
|
@@ -120,7 +126,7 @@ declare namespace gapi.client {
|
|
|
120
126
|
string;
|
|
121
127
|
/** Optional. Storage configuration for this environment. */
|
|
122
128
|
storageConfig?:
|
|
123
|
-
|
|
129
|
+
StorageConfig;
|
|
124
130
|
/** Output only. The time at which this environment was last modified. */
|
|
125
131
|
updateTime?:
|
|
126
132
|
string;
|
|
@@ -724,8 +730,10 @@ declare namespace gapi.client {
|
|
|
724
730
|
output?:
|
|
725
731
|
string[];
|
|
726
732
|
}
|
|
727
|
-
// tslint:disable-next-line:no-empty-interface
|
|
728
733
|
interface StorageConfig {
|
|
734
|
+
/** Optional. The name of the Cloud Storage bucket used by the environment. No `gs://` prefix. */
|
|
735
|
+
bucket?:
|
|
736
|
+
string;
|
|
729
737
|
}
|
|
730
738
|
interface TriggererResource {
|
|
731
739
|
/** Optional. The number of triggerers. */
|
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: 20231004
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -39,6 +39,7 @@ gapi.load('client', async () => {
|
|
|
39
39
|
dagGcsPrefix: "Test string",
|
|
40
40
|
databaseConfig: {
|
|
41
41
|
machineType: "Test string",
|
|
42
|
+
zone: "Test string",
|
|
42
43
|
},
|
|
43
44
|
encryptionConfig: {
|
|
44
45
|
kmsKeyName: "Test string",
|
|
@@ -168,6 +169,7 @@ gapi.load('client', async () => {
|
|
|
168
169
|
satisfiesPzs: true,
|
|
169
170
|
state: "Test string",
|
|
170
171
|
storageConfig: {
|
|
172
|
+
bucket: "Test string",
|
|
171
173
|
},
|
|
172
174
|
updateTime: "Test string",
|
|
173
175
|
uuid: "Test string",
|
|
@@ -226,6 +228,7 @@ gapi.load('client', async () => {
|
|
|
226
228
|
dagGcsPrefix: "Test string",
|
|
227
229
|
databaseConfig: {
|
|
228
230
|
machineType: "Test string",
|
|
231
|
+
zone: "Test string",
|
|
229
232
|
},
|
|
230
233
|
encryptionConfig: {
|
|
231
234
|
kmsKeyName: "Test string",
|
|
@@ -355,6 +358,7 @@ gapi.load('client', async () => {
|
|
|
355
358
|
satisfiesPzs: true,
|
|
356
359
|
state: "Test string",
|
|
357
360
|
storageConfig: {
|
|
361
|
+
bucket: "Test string",
|
|
358
362
|
},
|
|
359
363
|
updateTime: "Test string",
|
|
360
364
|
uuid: "Test string",
|