Skip to content

Commit 41523aa

Browse files
feat: Automated regeneration of Connectors client (googleapis#12944)
Auto-created at 2025-02-09 13:13:38 +0000 using the toys pull request generator.
1 parent b90c629 commit 41523aa

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

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 "20250128"
23+
@discovery_revision "20250205"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# NOTE: This file is auto generated by the elixir code generator program.
16+
# Do not edit this file manually.
17+
18+
defmodule GoogleApi.Connectors.V1.Model.EnrichmentConfig do
19+
@moduledoc """
20+
Data enrichment configuration.
21+
22+
## Attributes
23+
24+
* `appendAcl` (*type:* `boolean()`, *default:* `nil`) - Optional. Append ACL to the event.
25+
"""
26+
27+
use GoogleApi.Gax.ModelBase
28+
29+
@type t :: %__MODULE__{
30+
:appendAcl => boolean() | nil
31+
}
32+
33+
field(:appendAcl)
34+
end
35+
36+
defimpl Poison.Decoder, for: GoogleApi.Connectors.V1.Model.EnrichmentConfig do
37+
def decode(value, options) do
38+
GoogleApi.Connectors.V1.Model.EnrichmentConfig.decode(value, options)
39+
end
40+
end
41+
42+
defimpl Poison.Encoder, for: GoogleApi.Connectors.V1.Model.EnrichmentConfig do
43+
def encode(value, options) do
44+
GoogleApi.Gax.ModelBase.encode(value, options)
45+
end
46+
end

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ defmodule GoogleApi.Connectors.V1.Model.EventingConfig do
2424
* `additionalVariables` (*type:* `list(GoogleApi.Connectors.V1.Model.ConfigVariable.t)`, *default:* `nil`) - Optional. Additional eventing related field values
2525
* `authConfig` (*type:* `GoogleApi.Connectors.V1.Model.AuthConfig.t`, *default:* `nil`) - Optional. Auth details for the webhook adapter.
2626
* `deadLetterConfig` (*type:* `GoogleApi.Connectors.V1.Model.DeadLetterConfig.t`, *default:* `nil`) - Optional. Dead letter configuration for eventing of a connection.
27+
* `enrichmentConfig` (*type:* `GoogleApi.Connectors.V1.Model.EnrichmentConfig.t`, *default:* `nil`) - Optional. Data enrichment configuration.
2728
* `enrichmentEnabled` (*type:* `boolean()`, *default:* `nil`) - Optional. Enrichment Enabled.
2829
* `eventsListenerIngressEndpoint` (*type:* `String.t`, *default:* `nil`) - Optional. Ingress endpoint of the event listener. This is used only when private connectivity is enabled.
2930
* `listenerAuthConfig` (*type:* `GoogleApi.Connectors.V1.Model.AuthConfig.t`, *default:* `nil`) - Optional. Auth details for the event listener.
@@ -38,6 +39,7 @@ defmodule GoogleApi.Connectors.V1.Model.EventingConfig do
3839
:additionalVariables => list(GoogleApi.Connectors.V1.Model.ConfigVariable.t()) | nil,
3940
:authConfig => GoogleApi.Connectors.V1.Model.AuthConfig.t() | nil,
4041
:deadLetterConfig => GoogleApi.Connectors.V1.Model.DeadLetterConfig.t() | nil,
42+
:enrichmentConfig => GoogleApi.Connectors.V1.Model.EnrichmentConfig.t() | nil,
4143
:enrichmentEnabled => boolean() | nil,
4244
:eventsListenerIngressEndpoint => String.t() | nil,
4345
:listenerAuthConfig => GoogleApi.Connectors.V1.Model.AuthConfig.t() | nil,
@@ -50,6 +52,7 @@ defmodule GoogleApi.Connectors.V1.Model.EventingConfig do
5052
field(:additionalVariables, as: GoogleApi.Connectors.V1.Model.ConfigVariable, type: :list)
5153
field(:authConfig, as: GoogleApi.Connectors.V1.Model.AuthConfig)
5254
field(:deadLetterConfig, as: GoogleApi.Connectors.V1.Model.DeadLetterConfig)
55+
field(:enrichmentConfig, as: GoogleApi.Connectors.V1.Model.EnrichmentConfig)
5356
field(:enrichmentEnabled)
5457
field(:eventsListenerIngressEndpoint)
5558
field(:listenerAuthConfig, as: GoogleApi.Connectors.V1.Model.AuthConfig)

0 commit comments

Comments
 (0)