@maxim_mazurok/gapi.client.bigqueryconnection-v1 0.0.20240229 → 0.0.20240323
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 -1
- 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://bigqueryconnection.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240323
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -149,6 +149,8 @@ declare namespace gapi.client {
|
|
|
149
149
|
connectorId?: string;
|
|
150
150
|
/** Specifies how to reach the remote system this connection is pointing to. */
|
|
151
151
|
endpoint?: ConnectorConfigurationEndpoint;
|
|
152
|
+
/** Networking configuration. */
|
|
153
|
+
network?: ConnectorConfigurationNetwork;
|
|
152
154
|
}
|
|
153
155
|
interface ConnectorConfigurationAuthentication {
|
|
154
156
|
/** Username/password authentication. */
|
|
@@ -158,6 +160,14 @@ declare namespace gapi.client {
|
|
|
158
160
|
/** Host and port in a format of `hostname:port` as defined in https://www.ietf.org/rfc/rfc3986.html#section-3.2.2 and https://www.ietf.org/rfc/rfc3986.html#section-3.2.3. */
|
|
159
161
|
hostPort?: string;
|
|
160
162
|
}
|
|
163
|
+
interface ConnectorConfigurationNetwork {
|
|
164
|
+
/** Private Service Connect networking configuration. */
|
|
165
|
+
privateServiceConnect?: ConnectorConfigurationPrivateServiceConnect;
|
|
166
|
+
}
|
|
167
|
+
interface ConnectorConfigurationPrivateServiceConnect {
|
|
168
|
+
/** Required. Network Attachment name in the format of `projects/{project}/regions/{region}/networkAttachments/{networkattachment}`. */
|
|
169
|
+
networkAttachment?: string;
|
|
170
|
+
}
|
|
161
171
|
interface ConnectorConfigurationSecret {
|
|
162
172
|
/** Input only. Secret as plaintext. */
|
|
163
173
|
plaintext?: string;
|