Skip to content

Commit 5569643

Browse files
feat: Automated regeneration of AnalyticsHub client (googleapis#13177)
Auto-created at 2025-03-19 13:16:04 +0000 using the toys pull request generator.
1 parent 66f9593 commit 5569643

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

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

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

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

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

clients/analytics_hub/lib/google_api/analytics_hub/v1/model/message_transform.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@ defmodule GoogleApi.AnalyticsHub.V1.Model.MessageTransform do
2121
2222
## Attributes
2323
24-
* `enabled` (*type:* `boolean()`, *default:* `nil`) - Optional. If set to true, the transform is enabled. If false, the transform is disabled and will not be applied to messages. Defaults to `true`.
24+
* `disabled` (*type:* `boolean()`, *default:* `nil`) - Optional. If true, the transform is disabled and will not be applied to messages. Defaults to `false`.
25+
* `enabled` (*type:* `boolean()`, *default:* `nil`) - Optional. This field is deprecated, use the `disabled` field to disable transforms.
2526
* `javascriptUdf` (*type:* `GoogleApi.AnalyticsHub.V1.Model.JavaScriptUDF.t`, *default:* `nil`) - Optional. JavaScript User Defined Function. If multiple JavaScriptUDF's are specified on a resource, each must have a unique `function_name`.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
32+
:disabled => boolean() | nil,
3133
:enabled => boolean() | nil,
3234
:javascriptUdf => GoogleApi.AnalyticsHub.V1.Model.JavaScriptUDF.t() | nil
3335
}
3436

37+
field(:disabled)
3538
field(:enabled)
3639
field(:javascriptUdf, as: GoogleApi.AnalyticsHub.V1.Model.JavaScriptUDF)
3740
end

0 commit comments

Comments
 (0)