Skip to content

Commit

Permalink
feat: Automated regeneration of Looker client (#12147)
Browse files Browse the repository at this point in the history
Auto-created at 2024-09-14 13:12:27 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Sep 14, 2024
1 parent 16ce554 commit 706f69e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/looker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_looker, "~> 0.4"}]
[{:google_api_looker, "~> 0.5"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/looker/lib/google_api/looker/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Looker.V1 do
API client metadata for GoogleApi.Looker.V1.
"""

@discovery_revision "20240814"
@discovery_revision "20240910"

def discovery_revision(), do: @discovery_revision
end
6 changes: 6 additions & 0 deletions clients/looker/lib/google_api/looker/v1/model/instance.ex
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ defmodule GoogleApi.Looker.V1.Model.Instance do
* `denyMaintenancePeriod` (*type:* `GoogleApi.Looker.V1.Model.DenyMaintenancePeriod.t`, *default:* `nil`) - Maintenance denial period for this instance.
* `egressPublicIp` (*type:* `String.t`, *default:* `nil`) - Output only. Public Egress IP (IPv4).
* `encryptionConfig` (*type:* `GoogleApi.Looker.V1.Model.EncryptionConfig.t`, *default:* `nil`) - Encryption configuration (CMEK). Only set if CMEK has been enabled on the instance.
* `fipsEnabled` (*type:* `boolean()`, *default:* `nil`) - Optional. Whether FIPS is enabled on the Looker instance.
* `geminiEnabled` (*type:* `boolean()`, *default:* `nil`) - Optional. Whether Gemini feature is enabled on the Looker instance or not.
* `ingressPrivateIp` (*type:* `String.t`, *default:* `nil`) - Output only. Private Ingress IP (IPv4).
* `ingressPublicIp` (*type:* `String.t`, *default:* `nil`) - Output only. Public Ingress IP (IPv4).
* `lastDenyMaintenancePeriod` (*type:* `GoogleApi.Looker.V1.Model.DenyMaintenancePeriod.t`, *default:* `nil`) - Output only. Last computed maintenance denial period for this instance.
Expand Down Expand Up @@ -59,6 +61,8 @@ defmodule GoogleApi.Looker.V1.Model.Instance do
:denyMaintenancePeriod => GoogleApi.Looker.V1.Model.DenyMaintenancePeriod.t() | nil,
:egressPublicIp => String.t() | nil,
:encryptionConfig => GoogleApi.Looker.V1.Model.EncryptionConfig.t() | nil,
:fipsEnabled => boolean() | nil,
:geminiEnabled => boolean() | nil,
:ingressPrivateIp => String.t() | nil,
:ingressPublicIp => String.t() | nil,
:lastDenyMaintenancePeriod => GoogleApi.Looker.V1.Model.DenyMaintenancePeriod.t() | nil,
Expand Down Expand Up @@ -87,6 +91,8 @@ defmodule GoogleApi.Looker.V1.Model.Instance do
field(:denyMaintenancePeriod, as: GoogleApi.Looker.V1.Model.DenyMaintenancePeriod)
field(:egressPublicIp)
field(:encryptionConfig, as: GoogleApi.Looker.V1.Model.EncryptionConfig)
field(:fipsEnabled)
field(:geminiEnabled)
field(:ingressPrivateIp)
field(:ingressPublicIp)
field(:lastDenyMaintenancePeriod, as: GoogleApi.Looker.V1.Model.DenyMaintenancePeriod)
Expand Down
2 changes: 1 addition & 1 deletion clients/looker/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Looker.Mixfile do
use Mix.Project

@version "0.4.0"
@version "0.5.0"

def project() do
[
Expand Down

0 comments on commit 706f69e

Please sign in to comment.