Skip to content

Commit

Permalink
feat: Automated regeneration of NetworkManagement client (#11100)
Browse files Browse the repository at this point in the history
Auto-created at 2024-03-16 13:06:29 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Mar 16, 2024
1 parent 9795d06 commit 2b828ab
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
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

0 comments on commit 2b828ab

Please sign in to comment.