@maxim_mazurok/gapi.client.vpcaccess-v1 0.0.20240801 → 0.0.20240905
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 +6 -6
- package/package.json +1 -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://vpcaccess.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240905
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -27,7 +27,7 @@ declare namespace gapi.client {
|
|
|
27
27
|
interface Connector {
|
|
28
28
|
/** Output only. List of projects using the connector. */
|
|
29
29
|
connectedProjects?: string[];
|
|
30
|
-
/** The range of internal addresses that follows RFC 4632 notation. Example: `10.132.0.0/28`. */
|
|
30
|
+
/** Optional. The range of internal addresses that follows RFC 4632 notation. Example: `10.132.0.0/28`. */
|
|
31
31
|
ipCidrRange?: string;
|
|
32
32
|
/** Machine type of VM Instance underlying connector. Default is e2-micro */
|
|
33
33
|
machineType?: string;
|
|
@@ -41,11 +41,11 @@ declare namespace gapi.client {
|
|
|
41
41
|
minThroughput?: number;
|
|
42
42
|
/** The resource name in the format `projects/*/locations/*/connectors/*`. */
|
|
43
43
|
name?: string;
|
|
44
|
-
/** Name of a VPC network. */
|
|
44
|
+
/** Optional. Name of a VPC network. */
|
|
45
45
|
network?: string;
|
|
46
46
|
/** Output only. State of the VPC access connector. */
|
|
47
47
|
state?: string;
|
|
48
|
-
/** The subnet in which to house the VPC Access Connector. */
|
|
48
|
+
/** Optional. The subnet in which to house the VPC Access Connector. */
|
|
49
49
|
subnet?: Subnet;
|
|
50
50
|
}
|
|
51
51
|
interface ListConnectorsResponse {
|
|
@@ -129,9 +129,9 @@ declare namespace gapi.client {
|
|
|
129
129
|
message?: string;
|
|
130
130
|
}
|
|
131
131
|
interface Subnet {
|
|
132
|
-
/** Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName} */
|
|
132
|
+
/** Optional. Subnet name (relative, not fully qualified). E.g. if the full subnet selfLink is https://compute.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetName} the correct input for this field would be {subnetName} */
|
|
133
133
|
name?: string;
|
|
134
|
-
/** Project in which the subnet exists. If not set, this project is assumed to be the project for which the connector create request was issued. */
|
|
134
|
+
/** Optional. Project in which the subnet exists. If not set, this project is assumed to be the project for which the connector create request was issued. */
|
|
135
135
|
projectId?: string;
|
|
136
136
|
}
|
|
137
137
|
interface ConnectorsResource {
|