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 320b15d

Browse files
committedFeb 11, 2025
feat(connectors): update the api
#### connectors:v1 The following keys were added: - schemas.EnrichmentConfig (Total Keys: 3) - schemas.EventingConfig.properties.enrichmentConfig.$ref (Total Keys: 1)
1 parent 6b7a597 commit 320b15d

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed
 

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

+15
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,9 @@ <h3>Method Details</h3>
379379
&quot;projectId&quot;: &quot;A String&quot;, # Optional. Project which has the topic given.
380380
&quot;topic&quot;: &quot;A String&quot;, # Optional. Topic to push events which couldn&#x27;t be processed.
381381
},
382+
&quot;enrichmentConfig&quot;: { # Data enrichment configuration. # Optional. Data enrichment configuration.
383+
&quot;appendAcl&quot;: True or False, # Optional. Append ACL to the event.
384+
},
382385
&quot;enrichmentEnabled&quot;: True or False, # Optional. Enrichment Enabled.
383386
&quot;eventsListenerIngressEndpoint&quot;: &quot;A String&quot;, # Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
384387
&quot;listenerAuthConfig&quot;: { # AuthConfig defines details of a authentication type. # Optional. Auth details for the event listener.
@@ -907,6 +910,9 @@ <h3>Method Details</h3>
907910
&quot;projectId&quot;: &quot;A String&quot;, # Optional. Project which has the topic given.
908911
&quot;topic&quot;: &quot;A String&quot;, # Optional. Topic to push events which couldn&#x27;t be processed.
909912
},
913+
&quot;enrichmentConfig&quot;: { # Data enrichment configuration. # Optional. Data enrichment configuration.
914+
&quot;appendAcl&quot;: True or False, # Optional. Append ACL to the event.
915+
},
910916
&quot;enrichmentEnabled&quot;: True or False, # Optional. Enrichment Enabled.
911917
&quot;eventsListenerIngressEndpoint&quot;: &quot;A String&quot;, # Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
912918
&quot;listenerAuthConfig&quot;: { # AuthConfig defines details of a authentication type. # Optional. Auth details for the event listener.
@@ -1454,6 +1460,9 @@ <h3>Method Details</h3>
14541460
&quot;projectId&quot;: &quot;A String&quot;, # Optional. Project which has the topic given.
14551461
&quot;topic&quot;: &quot;A String&quot;, # Optional. Topic to push events which couldn&#x27;t be processed.
14561462
},
1463+
&quot;enrichmentConfig&quot;: { # Data enrichment configuration. # Optional. Data enrichment configuration.
1464+
&quot;appendAcl&quot;: True or False, # Optional. Append ACL to the event.
1465+
},
14571466
&quot;enrichmentEnabled&quot;: True or False, # Optional. Enrichment Enabled.
14581467
&quot;eventsListenerIngressEndpoint&quot;: &quot;A String&quot;, # Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
14591468
&quot;listenerAuthConfig&quot;: { # AuthConfig defines details of a authentication type. # Optional. Auth details for the event listener.
@@ -1955,6 +1964,9 @@ <h3>Method Details</h3>
19551964
&quot;projectId&quot;: &quot;A String&quot;, # Optional. Project which has the topic given.
19561965
&quot;topic&quot;: &quot;A String&quot;, # Optional. Topic to push events which couldn&#x27;t be processed.
19571966
},
1967+
&quot;enrichmentConfig&quot;: { # Data enrichment configuration. # Optional. Data enrichment configuration.
1968+
&quot;appendAcl&quot;: True or False, # Optional. Append ACL to the event.
1969+
},
19581970
&quot;enrichmentEnabled&quot;: True or False, # Optional. Enrichment Enabled.
19591971
&quot;eventsListenerIngressEndpoint&quot;: &quot;A String&quot;, # Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
19601972
&quot;listenerAuthConfig&quot;: { # AuthConfig defines details of a authentication type. # Optional. Auth details for the event listener.
@@ -2591,6 +2603,9 @@ <h3>Method Details</h3>
25912603
&quot;projectId&quot;: &quot;A String&quot;, # Optional. Project which has the topic given.
25922604
&quot;topic&quot;: &quot;A String&quot;, # Optional. Topic to push events which couldn&#x27;t be processed.
25932605
},
2606+
&quot;enrichmentConfig&quot;: { # Data enrichment configuration. # Optional. Data enrichment configuration.
2607+
&quot;appendAcl&quot;: True or False, # Optional. Append ACL to the event.
2608+
},
25942609
&quot;enrichmentEnabled&quot;: True or False, # Optional. Enrichment Enabled.
25952610
&quot;eventsListenerIngressEndpoint&quot;: &quot;A String&quot;, # Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
25962611
&quot;listenerAuthConfig&quot;: { # AuthConfig defines details of a authentication type. # Optional. Auth details for the event listener.

‎docs/dyn/connectors_v1.projects.locations.providers.connectors.versions.html

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ <h3>Method Details</h3>
111111
AUTH_SCHEMA_VIEW_UNSPECIFIED - Default value.
112112
BASIC - Basic view of the AuthSchema.
113113
JSON_SCHEMA - JSON schema view of the AuthSchema.
114+
EUA_SCHEMA - EUA Schema view of the AuthSchema.
114115
x__xgafv: string, V1 error format.
115116
Allowed values
116117
1 - v1 error format

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

+20-3
Original file line numberDiff line numberDiff line change
@@ -2370,12 +2370,14 @@
23702370
"enum": [
23712371
"AUTH_SCHEMA_VIEW_UNSPECIFIED",
23722372
"BASIC",
2373-
"JSON_SCHEMA"
2373+
"JSON_SCHEMA",
2374+
"EUA_SCHEMA"
23742375
],
23752376
"enumDescriptions": [
23762377
"Default value.",
23772378
"Basic view of the AuthSchema.",
2378-
"JSON schema view of the AuthSchema."
2379+
"JSON schema view of the AuthSchema.",
2380+
"EUA Schema view of the AuthSchema."
23792381
],
23802382
"location": "query",
23812383
"type": "string"
@@ -2558,7 +2560,7 @@
25582560
}
25592561
}
25602562
},
2561-
"revision": "20250128",
2563+
"revision": "20250205",
25622564
"rootUrl": "https://connectors.googleapis.com/",
25632565
"schemas": {
25642566
"AuditConfig": {
@@ -4434,6 +4436,17 @@
44344436
},
44354437
"type": "object"
44364438
},
4439+
"EnrichmentConfig": {
4440+
"description": "Data enrichment configuration.",
4441+
"id": "EnrichmentConfig",
4442+
"properties": {
4443+
"appendAcl": {
4444+
"description": "Optional. Append ACL to the event.",
4445+
"type": "boolean"
4446+
}
4447+
},
4448+
"type": "object"
4449+
},
44374450
"EnumOption": {
44384451
"description": "EnumOption definition",
44394452
"id": "EnumOption",
@@ -4639,6 +4652,10 @@
46394652
"$ref": "DeadLetterConfig",
46404653
"description": "Optional. Dead letter configuration for eventing of a connection."
46414654
},
4655+
"enrichmentConfig": {
4656+
"$ref": "EnrichmentConfig",
4657+
"description": "Optional. Data enrichment configuration."
4658+
},
46424659
"enrichmentEnabled": {
46434660
"description": "Optional. Enrichment Enabled.",
46444661
"type": "boolean"

0 commit comments

Comments
 (0)
Please sign in to comment.