@maxim_mazurok/gapi.client.eventarc-v1 0.0.20230922 → 0.0.20230929
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 +1 -8
- package/package.json +1 -1
- package/tests.ts +1 -3
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://eventarc.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230929
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -327,13 +327,6 @@ declare namespace gapi.client {
|
|
|
327
327
|
string;
|
|
328
328
|
}
|
|
329
329
|
interface HttpEndpoint {
|
|
330
|
-
/**
|
|
331
|
-
* Optional. Forwards DNS requests to the VPC specified by network config to resolve the HTTP endpoint. Default to false. If set to true, Eventarc will create a peering zone to the
|
|
332
|
-
* consumer VPC and forward DNS requests. See: https://cloud.google.com/dns/docs/zones/zones-overview#peering_zones Enable this if the URI uses an internal DNS name or a private Cloud
|
|
333
|
-
* DNS zone.
|
|
334
|
-
*/
|
|
335
|
-
forwardDnsRequests?:
|
|
336
|
-
boolean;
|
|
337
330
|
/**
|
|
338
331
|
* Required. The URI of the HTTP enpdoint. The value must be a RFC2396 URI string. Examples: `http://10.10.10.8:80/route`, `http://svc.us-central1.p.local:8080/`. Only HTTP and HTTPS
|
|
339
332
|
* protocols are supported. The host can be either a static IP addressable from the VPC specified by the network config, or an internal DNS hostname of the service resolvable via Cloud
|
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: 20230929
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -302,7 +302,6 @@ gapi.load('client', async () => {
|
|
|
302
302
|
service: "Test string",
|
|
303
303
|
},
|
|
304
304
|
httpEndpoint: {
|
|
305
|
-
forwardDnsRequests: true,
|
|
306
305
|
uri: "Test string",
|
|
307
306
|
},
|
|
308
307
|
networkConfig: {
|
|
@@ -387,7 +386,6 @@ gapi.load('client', async () => {
|
|
|
387
386
|
service: "Test string",
|
|
388
387
|
},
|
|
389
388
|
httpEndpoint: {
|
|
390
|
-
forwardDnsRequests: true,
|
|
391
389
|
uri: "Test string",
|
|
392
390
|
},
|
|
393
391
|
networkConfig: {
|