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 3786649

Browse files
committedMar 25, 2025
feat(integrations): update the api
#### integrations:v1 The following keys were added: - resources.projects.resources.locations.resources.integrations.methods.search.parameters.enableNaturalLanguageQueryUnderstanding (Total Keys: 2) - schemas.GoogleCloudIntegrationsV1alphaClientConfig.properties.enableHttpCall.type (Total Keys: 1) - schemas.GoogleCloudIntegrationsV1alphaProvisionClientRequest.properties.enableHttpCall.type (Total Keys: 1)
1 parent 0ad6b20 commit 3786649

4 files changed

+19
-3
lines changed
 

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

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ <h3>Method Details</h3>
140140
&quot;kmsRing&quot;: &quot;A String&quot;, # Required. A key ring organizes keys in a specific Google Cloud location and allows you to manage access control on groups of keys. A key ring&#x27;s name does not need to be unique across a Google Cloud project, but must be unique within a given location.
141141
},
142142
&quot;createSampleWorkflows&quot;: True or False, # Optional. Indicates if sample workflow should be created along with provisioning
143+
&quot;enableHttpCall&quot;: True or False, # Optional. Indicates if the client should be allowed to make HTTP calls.
143144
&quot;provisionGmek&quot;: True or False, # Optional. Deprecated. Indicates provision with GMEK or CMEK. This field is deprecated and the provision would always be GMEK if cloud_kms_config is not present in the request.
144145
&quot;runAsServiceAccount&quot;: &quot;A String&quot;, # Optional. User input run-as service account, if empty, will bring up a new default service account
145146
&quot;skipCpProvision&quot;: True or False, # Optional. Indicates if skip CP provision or not

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

+1
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ <h3>Method Details</h3>
200200
},
201201
&quot;createTime&quot;: &quot;A String&quot;, # The timestamp when the client was first created.
202202
&quot;description&quot;: &quot;A String&quot;, # Description of what the client is used for
203+
&quot;enableHttpCall&quot;: True or False, # Optional. Indicates the client enables making HTTP call.
203204
&quot;enableInternalIp&quot;: True or False, # Optional. Indicates the client enables internal IP feature, this is applicable for internal clients only.
204205
&quot;enableVariableMasking&quot;: True or False, # Optional. True if variable masking feature should be turned on for this region
205206
&quot;id&quot;: &quot;A String&quot;, # Globally unique ID (project_id + region)

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h2>Instance Methods</h2>
106106
<code><a href="#schedule">schedule(name, body=None, x__xgafv=None)</a></code></p>
107107
<p class="firstline">Schedules an integration for execution by passing the trigger id and the scheduled time in the request body.</p>
108108
<p class="toc_element">
109-
<code><a href="#search">search(parent, filter=None, pageSize=None, pageToken=None, query=None, x__xgafv=None)</a></code></p>
109+
<code><a href="#search">search(parent, enableNaturalLanguageQueryUnderstanding=None, filter=None, pageSize=None, pageToken=None, query=None, x__xgafv=None)</a></code></p>
110110
<p class="firstline">Searches and returns the list of integrations in the specified project.</p>
111111
<p class="toc_element">
112112
<code><a href="#search_next">search_next()</a></code></p>
@@ -646,11 +646,12 @@ <h3>Method Details</h3>
646646
</div>
647647

648648
<div class="method">
649-
<code class="details" id="search">search(parent, filter=None, pageSize=None, pageToken=None, query=None, x__xgafv=None)</code>
649+
<code class="details" id="search">search(parent, enableNaturalLanguageQueryUnderstanding=None, filter=None, pageSize=None, pageToken=None, query=None, x__xgafv=None)</code>
650650
<pre>Searches and returns the list of integrations in the specified project.
651651

652652
Args:
653653
parent: string, Required. Project and location from which the integrations should be listed. Format: projects/*/locations/*/resources/integrations (required)
654+
enableNaturalLanguageQueryUnderstanding: boolean, Optional. Whether to enable natural language query understanding.
654655
filter: string, Optional. The pre-filter to be applied to the search. This should follow the expressions defined in https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata. For example, &quot;status:ANY(&quot;ACTIVE&quot;)&quot; will return all the resources whose status contains the &quot;ACTIVE&quot;.
655656
pageSize: integer, Optional. The maximum number of results to return. The service may return fewer than this value. If unspecified, at most 10 results will be returned. The maximum value is 100; values above 100 will be coerced to 100.
656657
pageToken: string, Optional. A page token, received from a previous `SearchIntegrations` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchIntegrations` must match the call that provided the page token.

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

+14-1
Original file line numberDiff line numberDiff line change
@@ -1206,6 +1206,11 @@
12061206
"parent"
12071207
],
12081208
"parameters": {
1209+
"enableNaturalLanguageQueryUnderstanding": {
1210+
"description": "Optional. Whether to enable natural language query understanding.",
1211+
"location": "query",
1212+
"type": "boolean"
1213+
},
12091214
"filter": {
12101215
"description": "Optional. The pre-filter to be applied to the search. This should follow the expressions defined in https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata. For example, \"status:ANY(\"ACTIVE\")\" will return all the resources whose status contains the \"ACTIVE\".",
12111216
"location": "query",
@@ -4546,7 +4551,7 @@
45464551
}
45474552
}
45484553
},
4549-
"revision": "20250310",
4554+
"revision": "20250316",
45504555
"rootUrl": "https://integrations.googleapis.com/",
45514556
"schemas": {
45524557
"CrmlogErrorCode": {
@@ -10754,6 +10759,10 @@ false
1075410759
"description": "Description of what the client is used for",
1075510760
"type": "string"
1075610761
},
10762+
"enableHttpCall": {
10763+
"description": "Optional. Indicates the client enables making HTTP call.",
10764+
"type": "boolean"
10765+
},
1075710766
"enableInternalIp": {
1075810767
"description": "Optional. Indicates the client enables internal IP feature, this is applicable for internal clients only.",
1075910768
"type": "boolean"
@@ -13111,6 +13120,10 @@ false
1311113120
"description": "Optional. Indicates if sample workflow should be created along with provisioning",
1311213121
"type": "boolean"
1311313122
},
13123+
"enableHttpCall": {
13124+
"description": "Optional. Indicates if the client should be allowed to make HTTP calls.",
13125+
"type": "boolean"
13126+
},
1311413127
"provisionGmek": {
1311513128
"deprecated": true,
1311613129
"description": "Optional. Deprecated. Indicates provision with GMEK or CMEK. This field is deprecated and the provision would always be GMEK if cloud_kms_config is not present in the request.",

0 commit comments

Comments
 (0)
Please sign in to comment.