Skip to content

Commit 5014376

Browse files
yoshi-automationsofisl
authored andcommittedSep 22, 2023
feat(composer): update the API
#### composer:v1 The following keys were added: - schemas.Environment.properties.storageConfig.$ref - schemas.Environment.properties.storageConfig.description - schemas.StorageConfig.description - schemas.StorageConfig.id - schemas.StorageConfig.type
1 parent abf169e commit 5014376

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
 

‎discovery/composer-v1.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@
599599
}
600600
}
601601
},
602-
"revision": "20230806",
602+
"revision": "20230906",
603603
"rootUrl": "https://composer.googleapis.com/",
604604
"schemas": {
605605
"AllowedIpRange": {
@@ -781,6 +781,10 @@
781781
],
782782
"type": "string"
783783
},
784+
"storageConfig": {
785+
"$ref": "StorageConfig",
786+
"description": "Optional. Storage configuration for this environment."
787+
},
784788
"updateTime": {
785789
"description": "Output only. The time at which this environment was last modified.",
786790
"format": "google-datetime",
@@ -1663,6 +1667,12 @@
16631667
},
16641668
"type": "object"
16651669
},
1670+
"StorageConfig": {
1671+
"description": "The configuration for data storage in the environment.",
1672+
"id": "StorageConfig",
1673+
"properties": {},
1674+
"type": "object"
1675+
},
16661676
"WebServerConfig": {
16671677
"description": "The configuration settings for the Airflow web server App Engine instance. Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*",
16681678
"id": "WebServerConfig",

‎src/apis/composer/v1.ts

+8
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,10 @@ export namespace composer_v1 {
246246
* The current state of the environment.
247247
*/
248248
state?: string | null;
249+
/**
250+
* Optional. Storage configuration for this environment.
251+
*/
252+
storageConfig?: Schema$StorageConfig;
249253
/**
250254
* Output only. The time at which this environment was last modified.
251255
*/
@@ -922,6 +926,10 @@ export namespace composer_v1 {
922926
*/
923927
output?: string[] | null;
924928
}
929+
/**
930+
* The configuration for data storage in the environment.
931+
*/
932+
export interface Schema$StorageConfig {}
925933
/**
926934
* The configuration settings for the Airflow web server App Engine instance. Supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*
927935
*/

0 commit comments

Comments
 (0)
Please sign in to comment.