Skip to content

Commit eaeaad0

Browse files
feat: Automated regeneration of Integrations client (googleapis#13198)
Auto-created at 2025-03-20 13:16:47 +0000 using the toys pull request generator.
1 parent 4cbb14e commit eaeaad0

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

clients/integrations/lib/google_api/integrations/v1/api/projects.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2370,6 +2370,7 @@ defmodule GoogleApi.Integrations.V1.Api.Projects do
23702370
* `:quotaUser` (*type:* `String.t`) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
23712371
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
23722372
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
2373+
* `:enableNaturalLanguageQueryUnderstanding` (*type:* `boolean()`) - Optional. Whether to enable natural language query understanding.
23732374
* `:filter` (*type:* `String.t`) - 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".
23742375
* `:pageSize` (*type:* `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.
23752376
* `:pageToken` (*type:* `String.t`) - 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.
@@ -2410,6 +2411,7 @@ defmodule GoogleApi.Integrations.V1.Api.Projects do
24102411
:quotaUser => :query,
24112412
:uploadType => :query,
24122413
:upload_protocol => :query,
2414+
:enableNaturalLanguageQueryUnderstanding => :query,
24132415
:filter => :query,
24142416
:pageSize => :query,
24152417
:pageToken => :query,

clients/integrations/lib/google_api/integrations/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.Integrations.V1 do
2020
API client metadata for GoogleApi.Integrations.V1.
2121
"""
2222

23-
@discovery_revision "20250310"
23+
@discovery_revision "20250316"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/integrations/lib/google_api/integrations/v1/model/google_cloud_integrations_v1alpha_client_config.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaClientCo
2626
* `cloudKmsConfig` (*type:* `GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaCloudKmsConfig.t`, *default:* `nil`) - Cloud KMS config for Auth Module to encrypt/decrypt credentials.
2727
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - The timestamp when the client was first created.
2828
* `description` (*type:* `String.t`, *default:* `nil`) - Description of what the client is used for
29+
* `enableHttpCall` (*type:* `boolean()`, *default:* `nil`) - Optional. Indicates the client enables making HTTP call.
2930
* `enableInternalIp` (*type:* `boolean()`, *default:* `nil`) - Optional. Indicates the client enables internal IP feature, this is applicable for internal clients only.
3031
* `enableVariableMasking` (*type:* `boolean()`, *default:* `nil`) - Optional. True if variable masking feature should be turned on for this region
3132
* `id` (*type:* `String.t`, *default:* `nil`) - Globally unique ID (project_id + region)
@@ -45,6 +46,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaClientCo
4546
GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaCloudKmsConfig.t() | nil,
4647
:createTime => DateTime.t() | nil,
4748
:description => String.t() | nil,
49+
:enableHttpCall => boolean() | nil,
4850
:enableInternalIp => boolean() | nil,
4951
:enableVariableMasking => boolean() | nil,
5052
:id => String.t() | nil,
@@ -64,6 +66,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaClientCo
6466

6567
field(:createTime, as: DateTime)
6668
field(:description)
69+
field(:enableHttpCall)
6770
field(:enableInternalIp)
6871
field(:enableVariableMasking)
6972
field(:id)

clients/integrations/lib/google_api/integrations/v1/model/google_cloud_integrations_v1alpha_provision_client_request.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaProvisio
2323
2424
* `cloudKmsConfig` (*type:* `GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaCloudKmsConfig.t`, *default:* `nil`) - Optional. OPTIONAL: Cloud KMS config for AuthModule to encrypt/decrypt credentials.
2525
* `createSampleWorkflows` (*type:* `boolean()`, *default:* `nil`) - Optional. Indicates if sample workflow should be created along with provisioning
26+
* `enableHttpCall` (*type:* `boolean()`, *default:* `nil`) - Optional. Indicates if the client should be allowed to make HTTP calls.
2627
* `provisionGmek` (*type:* `boolean()`, *default:* `nil`) - 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.
2728
* `runAsServiceAccount` (*type:* `String.t`, *default:* `nil`) - Optional. User input run-as service account, if empty, will bring up a new default service account
2829
* `skipCpProvision` (*type:* `boolean()`, *default:* `nil`) - Optional. Indicates if skip CP provision or not
@@ -34,6 +35,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaProvisio
3435
:cloudKmsConfig =>
3536
GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaCloudKmsConfig.t() | nil,
3637
:createSampleWorkflows => boolean() | nil,
38+
:enableHttpCall => boolean() | nil,
3739
:provisionGmek => boolean() | nil,
3840
:runAsServiceAccount => String.t() | nil,
3941
:skipCpProvision => boolean() | nil
@@ -44,6 +46,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaProvisio
4446
)
4547

4648
field(:createSampleWorkflows)
49+
field(:enableHttpCall)
4750
field(:provisionGmek)
4851
field(:runAsServiceAccount)
4952
field(:skipCpProvision)

0 commit comments

Comments
 (0)