Skip to content

Commit 3b7fcfe

Browse files
feat: Automated regeneration of Connectors client (#13271)
Auto-created at 2025-03-31 13:13:59 +0000 using the toys pull request generator.
1 parent 07a5d53 commit 3b7fcfe

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ defmodule GoogleApi.Connectors.V1.Api.Projects do
244244
* `: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.
245245
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
246246
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
247+
* `:extraLocationTypes` (*type:* `list(String.t)`) - Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
247248
* `:filter` (*type:* `String.t`) - A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
248249
* `:pageSize` (*type:* `integer()`) - The maximum number of results to return. If not set, the service selects a default.
249250
* `:pageToken` (*type:* `String.t`) - A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.
@@ -272,6 +273,7 @@ defmodule GoogleApi.Connectors.V1.Api.Projects do
272273
:quotaUser => :query,
273274
:uploadType => :query,
274275
:upload_protocol => :query,
276+
:extraLocationTypes => :query,
275277
:filter => :query,
276278
:pageSize => :query,
277279
:pageToken => :query
@@ -3918,6 +3920,7 @@ defmodule GoogleApi.Connectors.V1.Api.Projects do
39183920
* `:orderBy` (*type:* `String.t`) - Order by parameters.
39193921
* `:pageSize` (*type:* `integer()`) - Page size.
39203922
* `:pageToken` (*type:* `String.t`) - Page token.
3923+
* `:returnPartialSuccess` (*type:* `boolean()`) - Optional. If true, allow partial responses for multi-regional Aggregated List requests.
39213924
* `opts` (*type:* `keyword()`) - Call options
39223925
39233926
## Returns
@@ -3956,7 +3959,8 @@ defmodule GoogleApi.Connectors.V1.Api.Projects do
39563959
:filter => :query,
39573960
:orderBy => :query,
39583961
:pageSize => :query,
3959-
:pageToken => :query
3962+
:pageToken => :query,
3963+
:returnPartialSuccess => :query
39603964
}
39613965

39623966
request =

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

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

23-
@discovery_revision "20250304"
23+
@discovery_revision "20250327"
2424

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

clients/connectors/lib/google_api/connectors/v1/model/connector_infra_config.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ defmodule GoogleApi.Connectors.V1.Model.ConnectorInfraConfig do
3131
* `migrateDeploymentModel` (*type:* `boolean()`, *default:* `nil`) - Indicate whether connector is being migrated to cloud run deployment model.
3232
* `migrateTls` (*type:* `boolean()`, *default:* `nil`) - Indicate whether connector is being migrated to TLS.
3333
* `provisionCloudSpanner` (*type:* `boolean()`, *default:* `nil`) - Indicate whether cloud spanner is required for connector job.
34+
* `provisionMemstore` (*type:* `boolean()`, *default:* `nil`) - Indicate whether memstore is required for connector job.
3435
* `ratelimitThreshold` (*type:* `String.t`, *default:* `nil`) - Max QPS supported by the connector version before throttling of requests.
3536
* `resourceLimits` (*type:* `GoogleApi.Connectors.V1.Model.ResourceLimits.t`, *default:* `nil`) - System resource limits.
3637
* `resourceRequests` (*type:* `GoogleApi.Connectors.V1.Model.ResourceRequests.t`, *default:* `nil`) - System resource requests.
@@ -50,6 +51,7 @@ defmodule GoogleApi.Connectors.V1.Model.ConnectorInfraConfig do
5051
:migrateDeploymentModel => boolean() | nil,
5152
:migrateTls => boolean() | nil,
5253
:provisionCloudSpanner => boolean() | nil,
54+
:provisionMemstore => boolean() | nil,
5355
:ratelimitThreshold => String.t() | nil,
5456
:resourceLimits => GoogleApi.Connectors.V1.Model.ResourceLimits.t() | nil,
5557
:resourceRequests => GoogleApi.Connectors.V1.Model.ResourceRequests.t() | nil,
@@ -66,6 +68,7 @@ defmodule GoogleApi.Connectors.V1.Model.ConnectorInfraConfig do
6668
field(:migrateDeploymentModel)
6769
field(:migrateTls)
6870
field(:provisionCloudSpanner)
71+
field(:provisionMemstore)
6972
field(:ratelimitThreshold)
7073
field(:resourceLimits, as: GoogleApi.Connectors.V1.Model.ResourceLimits)
7174
field(:resourceRequests, as: GoogleApi.Connectors.V1.Model.ResourceRequests)

clients/connectors/lib/google_api/connectors/v1/model/list_managed_zones_response.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,20 @@ defmodule GoogleApi.Connectors.V1.Model.ListManagedZonesResponse do
2323
2424
* `managedZones` (*type:* `list(GoogleApi.Connectors.V1.Model.ManagedZone.t)`, *default:* `nil`) - ManagedZones.
2525
* `nextPageToken` (*type:* `String.t`, *default:* `nil`) - Next page token.
26+
* `unreachable` (*type:* `list(String.t)`, *default:* `nil`) - Locations that could not be reached.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
3132
:managedZones => list(GoogleApi.Connectors.V1.Model.ManagedZone.t()) | nil,
32-
:nextPageToken => String.t() | nil
33+
:nextPageToken => String.t() | nil,
34+
:unreachable => list(String.t()) | nil
3335
}
3436

3537
field(:managedZones, as: GoogleApi.Connectors.V1.Model.ManagedZone, type: :list)
3638
field(:nextPageToken)
39+
field(:unreachable, type: :list)
3740
end
3841

3942
defimpl Poison.Decoder, for: GoogleApi.Connectors.V1.Model.ListManagedZonesResponse do

clients/connectors/lib/google_api/connectors/v2/api/projects.ex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,7 @@ defmodule GoogleApi.Connectors.V2.Api.Projects do
476476
* `: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.
477477
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
478478
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
479+
* `:view` (*type:* `String.t`) - Specified view of the action schema.
479480
* `opts` (*type:* `keyword()`) - Call options
480481
481482
## Returns
@@ -510,7 +511,8 @@ defmodule GoogleApi.Connectors.V2.Api.Projects do
510511
:prettyPrint => :query,
511512
:quotaUser => :query,
512513
:uploadType => :query,
513-
:upload_protocol => :query
514+
:upload_protocol => :query,
515+
:view => :query
514516
}
515517

516518
request =

clients/connectors/lib/google_api/connectors/v2/metadata.ex

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

23-
@discovery_revision "20250304"
23+
@discovery_revision "20250327"
2424

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

0 commit comments

Comments
 (0)