@maxim_mazurok/gapi.client.composer-v1 0.0.20220926 → 0.0.20221028
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 +7 -1
- package/package.json +1 -1
- package/tests.ts +7 -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: 20221028
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -228,6 +228,10 @@ declare namespace gapi.client {
|
|
|
228
228
|
/** Whether or not master authorized networks feature is enabled. */
|
|
229
229
|
enabled?: boolean;
|
|
230
230
|
}
|
|
231
|
+
interface NetworkingConfig {
|
|
232
|
+
/** Optional. Indicates the user requested specifc connection type between Tenant and Customer projects. You cannot set networking connection type in public IP environment. */
|
|
233
|
+
connectionType?: string;
|
|
234
|
+
}
|
|
231
235
|
interface NodeConfig {
|
|
232
236
|
/**
|
|
233
237
|
* Optional. The disk size in GB used for node VMs. Minimum size is 30GB. If unspecified, defaults to 100GB. Cannot be updated. This field is supported for Cloud Composer environments
|
|
@@ -361,6 +365,8 @@ declare namespace gapi.client {
|
|
|
361
365
|
enablePrivateEnvironment?: boolean;
|
|
362
366
|
/** Optional. When enabled, IPs from public (non-RFC1918) ranges can be used for `IPAllocationPolicy.cluster_ipv4_cidr_block` and `IPAllocationPolicy.service_ipv4_cidr_block`. */
|
|
363
367
|
enablePrivatelyUsedPublicIps?: boolean;
|
|
368
|
+
/** Optional. Configuration for the network connections configuration in the environment. */
|
|
369
|
+
networkingConfig?: NetworkingConfig;
|
|
364
370
|
/** Optional. Configuration for the private GKE cluster for a Private IP Cloud Composer environment. */
|
|
365
371
|
privateClusterConfig?: PrivateClusterConfig;
|
|
366
372
|
/**
|
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: 20221028
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -88,6 +88,9 @@ gapi.load('client', async () => {
|
|
|
88
88
|
cloudSqlIpv4CidrBlock: "Test string",
|
|
89
89
|
enablePrivateEnvironment: true,
|
|
90
90
|
enablePrivatelyUsedPublicIps: true,
|
|
91
|
+
networkingConfig: {
|
|
92
|
+
connectionType: "Test string",
|
|
93
|
+
},
|
|
91
94
|
privateClusterConfig: {
|
|
92
95
|
enablePrivateEndpoint: true,
|
|
93
96
|
masterIpv4CidrBlock: "Test string",
|
|
@@ -225,6 +228,9 @@ gapi.load('client', async () => {
|
|
|
225
228
|
cloudSqlIpv4CidrBlock: "Test string",
|
|
226
229
|
enablePrivateEnvironment: true,
|
|
227
230
|
enablePrivatelyUsedPublicIps: true,
|
|
231
|
+
networkingConfig: {
|
|
232
|
+
connectionType: "Test string",
|
|
233
|
+
},
|
|
228
234
|
privateClusterConfig: {
|
|
229
235
|
enablePrivateEndpoint: true,
|
|
230
236
|
masterIpv4CidrBlock: "Test string",
|