@maxim_mazurok/gapi.client.eventarc-v1 0.0.20230616 → 0.0.20230711
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 +2 -21
- package/package.json +1 -1
- package/tests.ts +1 -9
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: 20230711
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -159,9 +159,6 @@ declare namespace gapi.client {
|
|
|
159
159
|
/** A GKE service capable of receiving events. The service should be running in the same project as the trigger. */
|
|
160
160
|
gke?:
|
|
161
161
|
GKE;
|
|
162
|
-
/** An HTTP endpoint destination described by an URI. */
|
|
163
|
-
httpEndpoint?:
|
|
164
|
-
HttpEndpoint;
|
|
165
162
|
/**
|
|
166
163
|
* The resource name of the Workflow whose Executions are triggered by the events. The Workflow resource should be deployed in the same project as the trigger. Format:
|
|
167
164
|
* `projects/{project}/locations/{location}/workflows/{workflow}`
|
|
@@ -181,7 +178,7 @@ declare namespace gapi.client {
|
|
|
181
178
|
string;
|
|
182
179
|
/**
|
|
183
180
|
* Optional. The operator used for matching the events with the value of the filter. If not specified, only events that have an exact key-value pair specified in the filter are
|
|
184
|
-
* matched. The
|
|
181
|
+
* matched. The allowed values are `path_pattern` and `match-path-pattern`. `path_pattern` is only allowed for GCFv1 triggers.
|
|
185
182
|
*/
|
|
186
183
|
operator?:
|
|
187
184
|
string;
|
|
@@ -323,22 +320,6 @@ declare namespace gapi.client {
|
|
|
323
320
|
message?:
|
|
324
321
|
string;
|
|
325
322
|
}
|
|
326
|
-
interface HttpEndpoint {
|
|
327
|
-
/**
|
|
328
|
-
* 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
|
|
329
|
-
* 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
|
|
330
|
-
* DNS zone.
|
|
331
|
-
*/
|
|
332
|
-
forwardDnsRequests?:
|
|
333
|
-
boolean;
|
|
334
|
-
/**
|
|
335
|
-
* 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
|
|
336
|
-
* 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
|
|
337
|
-
* DNS.
|
|
338
|
-
*/
|
|
339
|
-
uri?:
|
|
340
|
-
string;
|
|
341
|
-
}
|
|
342
323
|
interface ListChannelConnectionsResponse {
|
|
343
324
|
/** The requested channel connections, up to the number specified in `page_size`. */
|
|
344
325
|
channelConnections?:
|
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: 20230711
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -301,10 +301,6 @@ gapi.load('client', async () => {
|
|
|
301
301
|
path: "Test string",
|
|
302
302
|
service: "Test string",
|
|
303
303
|
},
|
|
304
|
-
httpEndpoint: {
|
|
305
|
-
forwardDnsRequests: true,
|
|
306
|
-
uri: "Test string",
|
|
307
|
-
},
|
|
308
304
|
workflow: "Test string",
|
|
309
305
|
},
|
|
310
306
|
etag: "Test string",
|
|
@@ -383,10 +379,6 @@ gapi.load('client', async () => {
|
|
|
383
379
|
path: "Test string",
|
|
384
380
|
service: "Test string",
|
|
385
381
|
},
|
|
386
|
-
httpEndpoint: {
|
|
387
|
-
forwardDnsRequests: true,
|
|
388
|
-
uri: "Test string",
|
|
389
|
-
},
|
|
390
382
|
workflow: "Test string",
|
|
391
383
|
},
|
|
392
384
|
etag: "Test string",
|