Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 457dfb4

Browse files
committedFeb 18, 2025
feat(integrations): update the api
#### integrations:v1 The following keys were added: - resources.projects.resources.locations.resources.integrations.methods.executeEvent.parameters.GCPCloudEventsMode (Total Keys: 2) - schemas.GoogleCloudConnectorsV1EnrichmentConfig (Total Keys: 3) - schemas.GoogleCloudConnectorsV1EventingConfig.properties.enrichmentConfig.$ref (Total Keys: 1)
1 parent 67b2fa7 commit 457dfb4

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed
 

‎docs/dyn/integrations_v1.projects.locations.connections.html

+3
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,9 @@ <h3>Method Details</h3>
371371
&quot;projectId&quot;: &quot;A String&quot;, # Optional. Project which has the topic given.
372372
&quot;topic&quot;: &quot;A String&quot;, # Optional. Topic to push events which couldn&#x27;t be processed.
373373
},
374+
&quot;enrichmentConfig&quot;: { # Data enrichment configuration. # Optional. Data enrichment configuration.
375+
&quot;appendAcl&quot;: True or False, # Optional. Append ACL to the event.
376+
},
374377
&quot;enrichmentEnabled&quot;: True or False, # Optional. Enrichment Enabled.
375378
&quot;eventsListenerIngressEndpoint&quot;: &quot;A String&quot;, # Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
376379
&quot;listenerAuthConfig&quot;: { # AuthConfig defines details of a authentication type. # Optional. Auth details for the event listener.

‎docs/dyn/integrations_v1.projects.locations.integrations.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ <h2>Instance Methods</h2>
9494
<code><a href="#execute">execute(name, body=None, x__xgafv=None)</a></code></p>
9595
<p class="firstline">Executes integrations synchronously by passing the trigger id in the request body. The request is not returned until the requested executions are either fulfilled or experienced an error. If the integration name is not specified (passing `-`), all of the associated integration under the given trigger_id will be executed. Otherwise only the specified integration for the given `trigger_id` is executed. This is helpful for execution the integration from UI.</p>
9696
<p class="toc_element">
97-
<code><a href="#executeEvent">executeEvent(name, body=None, triggerId=None, x__xgafv=None)</a></code></p>
97+
<code><a href="#executeEvent">executeEvent(name, GCPCloudEventsMode=None, body=None, triggerId=None, x__xgafv=None)</a></code></p>
9898
<p class="firstline">Executes an integration on receiving events from Integration Connector triggers, Eventarc or CPS Trigger. Input data to integration is received in body in json format</p>
9999
<p class="toc_element">
100100
<code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
@@ -387,12 +387,13 @@ <h3>Method Details</h3>
387387
</div>
388388

389389
<div class="method">
390-
<code class="details" id="executeEvent">executeEvent(name, body=None, triggerId=None, x__xgafv=None)</code>
390+
<code class="details" id="executeEvent">executeEvent(name, GCPCloudEventsMode=None, body=None, triggerId=None, x__xgafv=None)</code>
391391
<pre>Executes an integration on receiving events from Integration Connector triggers, Eventarc or CPS Trigger. Input data to integration is received in body in json format
392392

393393
Args:
394394
name: string, Required. The integration resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration_id} (required)
395395
body: object, The request body.
396+
GCPCloudEventsMode: string, Optional. LINT: LEGACY_NAMES The query parameter value for __GCP_CloudEventsMode, set by the Eventarc service when configuring triggers.
396397
triggerId: string, Required. Id of the integration trigger config. The trigger_id is in the format: `integration_connector_trigger/projects/{gcp_project_id}/location/{location}/connections/{connection_name}/subscriptions/{subscription_name}`.
397398
x__xgafv: string, V1 error format.
398399
Allowed values

‎googleapiclient/discovery_cache/documents/integrations.v1.json

+21-1
Original file line numberDiff line numberDiff line change
@@ -1090,6 +1090,11 @@
10901090
"name"
10911091
],
10921092
"parameters": {
1093+
"GCPCloudEventsMode": {
1094+
"description": "Optional. LINT: LEGACY_NAMES The query parameter value for __GCP_CloudEventsMode, set by the Eventarc service when configuring triggers.",
1095+
"location": "query",
1096+
"type": "string"
1097+
},
10931098
"name": {
10941099
"description": "Required. The integration resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration_id}",
10951100
"location": "path",
@@ -4553,7 +4558,7 @@
45534558
}
45544559
}
45554560
},
4556-
"revision": "20250128",
4561+
"revision": "20250206",
45574562
"rootUrl": "https://integrations.googleapis.com/",
45584563
"schemas": {
45594564
"CrmlogErrorCode": {
@@ -9867,6 +9872,17 @@ false
98679872
},
98689873
"type": "object"
98699874
},
9875+
"GoogleCloudConnectorsV1EnrichmentConfig": {
9876+
"description": "Data enrichment configuration.",
9877+
"id": "GoogleCloudConnectorsV1EnrichmentConfig",
9878+
"properties": {
9879+
"appendAcl": {
9880+
"description": "Optional. Append ACL to the event.",
9881+
"type": "boolean"
9882+
}
9883+
},
9884+
"type": "object"
9885+
},
98709886
"GoogleCloudConnectorsV1EventingConfig": {
98719887
"description": "Eventing Configuration of a connection",
98729888
"id": "GoogleCloudConnectorsV1EventingConfig",
@@ -9886,6 +9902,10 @@ false
98869902
"$ref": "GoogleCloudConnectorsV1EventingConfigDeadLetterConfig",
98879903
"description": "Optional. Dead letter configuration for eventing of a connection."
98889904
},
9905+
"enrichmentConfig": {
9906+
"$ref": "GoogleCloudConnectorsV1EnrichmentConfig",
9907+
"description": "Optional. Data enrichment configuration."
9908+
},
98899909
"enrichmentEnabled": {
98909910
"description": "Optional. Enrichment Enabled.",
98919911
"type": "boolean"

0 commit comments

Comments
 (0)
Please sign in to comment.