Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of NetworkManagement client #11100

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/network_management/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_network_management, "~> 0.19"}]
[{:google_api_network_management, "~> 0.20"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.NetworkManagement.V1 do
API client metadata for GoogleApi.NetworkManagement.V1.
"""

@discovery_revision "20240228"
@discovery_revision "20240306"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ defmodule GoogleApi.NetworkManagement.V1.Model.ConnectivityTest do

## Attributes

* `bypassFirewallChecks` (*type:* `boolean()`, *default:* `nil`) - Whether the test should skip firewall checking. If not provided, we assume false.
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the test was created.
* `description` (*type:* `String.t`, *default:* `nil`) - The user-supplied description of the Connectivity Test. Maximum of 512 characters.
* `destination` (*type:* `GoogleApi.NetworkManagement.V1.Model.Endpoint.t`, *default:* `nil`) - Required. Destination specification of the Connectivity Test. You can use a combination of destination IP address, Compute Engine VM instance, or VPC network to uniquely identify the destination location. Even if the destination IP address is not unique, the source IP location is unique. Usually, the analysis can infer the destination endpoint from route information. If the destination you specify is a VM instance and the instance has multiple network interfaces, then you must also specify either a destination IP address or VPC network to identify the destination interface. A reachability analysis proceeds even if the destination location is ambiguous. However, the result can include endpoints that you don't intend to test.
Expand All @@ -38,6 +39,7 @@ defmodule GoogleApi.NetworkManagement.V1.Model.ConnectivityTest do
use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:bypassFirewallChecks => boolean() | nil,
:createTime => DateTime.t() | nil,
:description => String.t() | nil,
:destination => GoogleApi.NetworkManagement.V1.Model.Endpoint.t() | nil,
Expand All @@ -53,6 +55,7 @@ defmodule GoogleApi.NetworkManagement.V1.Model.ConnectivityTest do
:updateTime => DateTime.t() | nil
}

field(:bypassFirewallChecks)
field(:createTime, as: DateTime)
field(:description)
field(:destination, as: GoogleApi.NetworkManagement.V1.Model.Endpoint)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.NetworkManagement.V1beta1 do
API client metadata for GoogleApi.NetworkManagement.V1beta1.
"""

@discovery_revision "20240228"
@discovery_revision "20240306"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ defmodule GoogleApi.NetworkManagement.V1beta1.Model.ConnectivityTest do

## Attributes

* `bypassFirewallChecks` (*type:* `boolean()`, *default:* `nil`) - Whether the test should skip firewall checking. If not provided, we assume false.
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the test was created.
* `description` (*type:* `String.t`, *default:* `nil`) - The user-supplied description of the Connectivity Test. Maximum of 512 characters.
* `destination` (*type:* `GoogleApi.NetworkManagement.V1beta1.Model.Endpoint.t`, *default:* `nil`) - Required. Destination specification of the Connectivity Test. You can use a combination of destination IP address, Compute Engine VM instance, or VPC network to uniquely identify the destination location. Even if the destination IP address is not unique, the source IP location is unique. Usually, the analysis can infer the destination endpoint from route information. If the destination you specify is a VM instance and the instance has multiple network interfaces, then you must also specify either a destination IP address or VPC network to identify the destination interface. A reachability analysis proceeds even if the destination location is ambiguous. However, the result can include endpoints that you don't intend to test.
Expand All @@ -38,6 +39,7 @@ defmodule GoogleApi.NetworkManagement.V1beta1.Model.ConnectivityTest do
use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:bypassFirewallChecks => boolean() | nil,
:createTime => DateTime.t() | nil,
:description => String.t() | nil,
:destination => GoogleApi.NetworkManagement.V1beta1.Model.Endpoint.t() | nil,
Expand All @@ -53,6 +55,7 @@ defmodule GoogleApi.NetworkManagement.V1beta1.Model.ConnectivityTest do
:updateTime => DateTime.t() | nil
}

field(:bypassFirewallChecks)
field(:createTime, as: DateTime)
field(:description)
field(:destination, as: GoogleApi.NetworkManagement.V1beta1.Model.Endpoint)
Expand Down
2 changes: 1 addition & 1 deletion clients/network_management/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.NetworkManagement.Mixfile do
use Mix.Project

@version "0.19.0"
@version "0.20.0"

def project() do
[
Expand Down
Loading